Struct icu::normalizer::provider::DecompositionSupplementV1
source ยท pub struct DecompositionSupplementV1<'data> {
pub trie: CodePointTrie<'data, u32>,
pub flags: u8,
pub passthrough_cap: u16,
}
Expand description
Data that either NFKD or the decomposed form of UTS 46 needs in addition to the NFD data.
Fieldsยง
ยงtrie: CodePointTrie<'data, u32>
Trie for the decompositions that differ from NFD.
Getting a zero from this trie means that you need
to make another lookup from DecompositionDataV1::trie
.
flags: u8
Flags that indicate how the set of characters whose decompositions starts with a non-starter differs from the set for NFD.
Bit 0: Whether half-width kana voicing marks decompose into non-starters (their full-width combining counterparts). Bit 1: Whether U+0345 COMBINING GREEK YPOGEGRAMMENI decomposes into a starter (U+03B9 GREEK SMALL LETTER IOTA). (Other bits unused.)
passthrough_cap: u16
The passthrough bounds of NFD/NFC are lowered to this maximum instead. (16-bit, because cannot be higher than 0x0300, which is the bound for NFC.)
Implementationsยง
sourceยงimpl DecompositionSupplementV1<'_>
impl DecompositionSupplementV1<'_>
sourcepub fn half_width_voicing_marks_become_non_starters(&self) -> bool
pub fn half_width_voicing_marks_become_non_starters(&self) -> bool
Whether half-width kana voicing marks decompose into non-starters (their full-width combining counterparts).
Trait Implementationsยง
sourceยงimpl<'data> Bake for DecompositionSupplementV1<'data>
impl<'data> Bake for DecompositionSupplementV1<'data>
sourceยงfn bake(&self, env: &CrateEnv) -> TokenStream
fn bake(&self, env: &CrateEnv) -> TokenStream
sourceยงimpl<'data> BakeSize for DecompositionSupplementV1<'data>
impl<'data> BakeSize for DecompositionSupplementV1<'data>
sourceยงfn borrows_size(&self) -> usize
fn borrows_size(&self) -> usize
sourceยงimpl<'data> Clone for DecompositionSupplementV1<'data>
impl<'data> Clone for DecompositionSupplementV1<'data>
sourceยงfn clone(&self) -> DecompositionSupplementV1<'data>
fn clone(&self) -> DecompositionSupplementV1<'data>
1.0.0 ยท sourceยงfn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresourceยงimpl<'data> Debug for DecompositionSupplementV1<'data>
impl<'data> Debug for DecompositionSupplementV1<'data>
sourceยงimpl<'de, 'data> Deserialize<'de> for DecompositionSupplementV1<'data>where
'de: 'data,
impl<'de, 'data> Deserialize<'de> for DecompositionSupplementV1<'data>where
'de: 'data,
sourceยงfn deserialize<__D>(
__deserializer: __D,
) -> Result<DecompositionSupplementV1<'data>, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<DecompositionSupplementV1<'data>, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
sourceยงimpl<'data> PartialEq for DecompositionSupplementV1<'data>
impl<'data> PartialEq for DecompositionSupplementV1<'data>
sourceยงfn eq(&self, other: &DecompositionSupplementV1<'data>) -> bool
fn eq(&self, other: &DecompositionSupplementV1<'data>) -> bool
self
and other
values to be equal, and is used by ==
.sourceยงimpl<'data> Serialize for DecompositionSupplementV1<'data>
impl<'data> Serialize for DecompositionSupplementV1<'data>
sourceยงfn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
sourceยงimpl<'a> Yokeable<'a> for DecompositionSupplementV1<'static>
impl<'a> Yokeable<'a> for DecompositionSupplementV1<'static>
sourceยงtype Output = DecompositionSupplementV1<'a>
type Output = DecompositionSupplementV1<'a>
Self
with the 'static
replaced with 'a
, i.e. Self<'a>
sourceยงfn transform(
&'a self,
) -> &'a <DecompositionSupplementV1<'static> as Yokeable<'a>>::Output
fn transform( &'a self, ) -> &'a <DecompositionSupplementV1<'static> as Yokeable<'a>>::Output
sourceยงfn transform_owned(
self,
) -> <DecompositionSupplementV1<'static> as Yokeable<'a>>::Output
fn transform_owned( self, ) -> <DecompositionSupplementV1<'static> as Yokeable<'a>>::Output
sourceยงunsafe fn make(
this: <DecompositionSupplementV1<'static> as Yokeable<'a>>::Output,
) -> DecompositionSupplementV1<'static>
unsafe fn make( this: <DecompositionSupplementV1<'static> as Yokeable<'a>>::Output, ) -> DecompositionSupplementV1<'static>
Self<'a>
โs lifetime. Read moresourceยงfn transform_mut<F>(&'a mut self, f: F)where
F: 'static + for<'b> FnOnce(&'b mut <DecompositionSupplementV1<'static> as Yokeable<'a>>::Output),
fn transform_mut<F>(&'a mut self, f: F)where
F: 'static + for<'b> FnOnce(&'b mut <DecompositionSupplementV1<'static> as Yokeable<'a>>::Output),
self
between &'a mut Self<'static>
and &'a mut Self<'a>
,
and pass it to f
. Read moresourceยงimpl<'zf, 'zf_inner> ZeroFrom<'zf, DecompositionSupplementV1<'zf_inner>> for DecompositionSupplementV1<'zf>
impl<'zf, 'zf_inner> ZeroFrom<'zf, DecompositionSupplementV1<'zf_inner>> for DecompositionSupplementV1<'zf>
sourceยงfn zero_from(
this: &'zf DecompositionSupplementV1<'zf_inner>,
) -> DecompositionSupplementV1<'zf>
fn zero_from( this: &'zf DecompositionSupplementV1<'zf_inner>, ) -> DecompositionSupplementV1<'zf>
C
into a struct that may retain references into C
.impl<'data> StructuralPartialEq for DecompositionSupplementV1<'data>
Auto Trait Implementationsยง
impl<'data> Freeze for DecompositionSupplementV1<'data>
impl<'data> RefUnwindSafe for DecompositionSupplementV1<'data>
impl<'data> Send for DecompositionSupplementV1<'data>
impl<'data> Sync for DecompositionSupplementV1<'data>
impl<'data> Unpin for DecompositionSupplementV1<'data>
impl<'data> UnwindSafe for DecompositionSupplementV1<'data>
Blanket Implementationsยง
sourceยงimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
sourceยงfn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
sourceยงimpl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
sourceยงunsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)sourceยงimpl<T> IntoEither for T
impl<T> IntoEither for T
sourceยงfn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresourceยงfn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more