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<'_>
const HALF_WIDTH_VOICING_MARK_MASK: u8 = 1u8
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> 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<'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<'a> Yokeable<'a> for DecompositionSupplementV1<'static>
impl<'a> Yokeable<'a> for DecompositionSupplementV1<'static>
ยงtype Output = DecompositionSupplementV1<'a>
type Output = DecompositionSupplementV1<'a>
Self
with the 'static
replaced with 'a
, i.e. Self<'a>
sourceยงfn transform_owned(self) -> Self::Output
fn transform_owned(self) -> Self::Output
sourceยง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>) -> Self
fn zero_from(this: &'zf DecompositionSupplementV1<'zf_inner>) -> Self
C
into a struct that may retain references into C
.