Struct icu_codepointtrie::CodePointTrieHeader
source · [−]pub struct CodePointTrieHeader {
pub high_start: u32,
pub shifted12_high_start: u16,
pub index3_null_offset: u16,
pub data_null_offset: u32,
pub null_value: u32,
pub trie_type: TrieType,
}Expand description
This struct contains the fixed-length header fields of a CodePointTrie.
Fields
high_start: u32The code point of the start of the last range of the trie. A range is defined as a partition of the code point space such that the value in this trie associated with all code points of the same range is the same.
For the property value data for many Unicode properties,
often times, high_start is U+10000 or lower. In such cases, not
reserving space in the index array for duplicate values is a large
savings. The “highValue” associated with the high_start range is
stored at the second-to-last position of the data array.
(See impl_const::HIGH_VALUE_NEG_DATA_OFFSET.)
shifted12_high_start: u16A version of the high_start value that is right-shifted 12 spaces,
but is rounded up to a multiple 0x1000 for easy testing from UTF-8
lead bytes.
index3_null_offset: u16Offset for the null block in the “index-3” table of the index array.
Set to an impossibly high value (e.g., 0xffff) if there is no
dedicated index-3 null block.
data_null_offset: u32Internal data null block offset, not shifted.
Set to an impossibly high value (e.g., 0xfffff) if there is no
dedicated data null block.
null_value: u32The value stored in the trie that represents a null value being associated to a code point.
trie_type: TrieTypeThe enum value representing the type of trie, where trie type is as it is defined in ICU (ex: Fast, Small).
Trait Implementations
sourceimpl Clone for CodePointTrieHeader
impl Clone for CodePointTrieHeader
sourcefn clone(&self) -> CodePointTrieHeader
fn clone(&self) -> CodePointTrieHeader
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for CodePointTrieHeader
impl Debug for CodePointTrieHeader
sourceimpl<'de> Deserialize<'de> for CodePointTrieHeader
impl<'de> Deserialize<'de> for CodePointTrieHeader
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl PartialEq<CodePointTrieHeader> for CodePointTrieHeader
impl PartialEq<CodePointTrieHeader> for CodePointTrieHeader
sourcefn eq(&self, other: &CodePointTrieHeader) -> bool
fn eq(&self, other: &CodePointTrieHeader) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &CodePointTrieHeader) -> bool
fn ne(&self, other: &CodePointTrieHeader) -> bool
This method tests for !=.
sourceimpl Serialize for CodePointTrieHeader
impl Serialize for CodePointTrieHeader
sourceimpl TryFrom<&'_ CodePointTrieToml> for CodePointTrieHeader
impl TryFrom<&'_ CodePointTrieToml> for CodePointTrieHeader
sourceimpl<'a> Yokeable<'a> for CodePointTrieHeader
impl<'a> Yokeable<'a> for CodePointTrieHeader
type Output = CodePointTrieHeader
type Output = CodePointTrieHeader
This type MUST be Self with the 'static replaced with 'a, i.e. Self<'a>
sourcefn transform(&self) -> &Self::Output
fn transform(&self) -> &Self::Output
This method must cast self between &'a Self<'static> and &'a Self<'a>. Read more
sourcefn transform_owned(self) -> Self::Output
fn transform_owned(self) -> Self::Output
This method must cast self between Self<'static> and Self<'a>. Read more
sourceunsafe fn make(this: Self::Output) -> Self
unsafe fn make(this: Self::Output) -> Self
This method can be used to cast away Self<'a>’s lifetime. Read more
sourcefn transform_mut<F>(&'a mut self, f: F) where
F: 'static + for<'b> FnOnce(&'b mut Self::Output),
fn transform_mut<F>(&'a mut self, f: F) where
F: 'static + for<'b> FnOnce(&'b mut Self::Output),
This method must cast self between &'a mut Self<'static> and &'a mut Self<'a>,
and pass it to f. Read more
sourceimpl<'zf> ZeroFrom<'zf, CodePointTrieHeader> for CodePointTrieHeader
impl<'zf> ZeroFrom<'zf, CodePointTrieHeader> for CodePointTrieHeader
impl Copy for CodePointTrieHeader
impl Eq for CodePointTrieHeader
impl<'a> IsCovariant<'a> for CodePointTrieHeader
impl StructuralEq for CodePointTrieHeader
impl StructuralPartialEq for CodePointTrieHeader
Auto Trait Implementations
impl RefUnwindSafe for CodePointTrieHeader
impl Send for CodePointTrieHeader
impl Sync for CodePointTrieHeader
impl Unpin for CodePointTrieHeader
impl UnwindSafe for CodePointTrieHeader
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more