pub struct DecompositionTables<'data> {
pub scalars16: ZeroVec<'data, u16>,
pub scalars24: ZeroVec<'data, char>,
}
Expand description
The expansion tables for cases where the decomposition isn’t contained in the trie value
🚧 This code is considered unstable; it may change at any time, in breaking or non-breaking ways,
including in SemVer minor releases. While the serde representation of data structs is guaranteed
to be stable, their Rust representation might not be. Use with caution.
Fields§
§scalars16: ZeroVec<'data, u16>
Decompositions that are fully within the BMP
scalars24: ZeroVec<'data, char>
Decompositions with at least one character outside the BMP
Trait Implementations§
Source§impl<'data> Clone for DecompositionTables<'data>
impl<'data> Clone for DecompositionTables<'data>
Source§fn clone(&self) -> DecompositionTables<'data>
fn clone(&self) -> DecompositionTables<'data>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'data> Debug for DecompositionTables<'data>
impl<'data> Debug for DecompositionTables<'data>
Source§impl MaybeAsVarULE for DecompositionTables<'_>
impl MaybeAsVarULE for DecompositionTables<'_>
Source§impl<'data> PartialEq for DecompositionTables<'data>
impl<'data> PartialEq for DecompositionTables<'data>
Source§impl<'a> Yokeable<'a> for DecompositionTables<'static>
impl<'a> Yokeable<'a> for DecompositionTables<'static>
Source§type Output = DecompositionTables<'a>
type Output = DecompositionTables<'a>
This type MUST be
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, DecompositionTables<'zf_inner>> for DecompositionTables<'zf>
impl<'zf, 'zf_inner> ZeroFrom<'zf, DecompositionTables<'zf_inner>> for DecompositionTables<'zf>
Source§fn zero_from(this: &'zf DecompositionTables<'zf_inner>) -> Self
fn zero_from(this: &'zf DecompositionTables<'zf_inner>) -> Self
Clone the other
C
into a struct that may retain references into C
.impl<'data> StructuralPartialEq for DecompositionTables<'data>
Auto Trait Implementations§
impl<'data> Freeze for DecompositionTables<'data>
impl<'data> RefUnwindSafe for DecompositionTables<'data>
impl<'data> Send for DecompositionTables<'data>
impl<'data> Sync for DecompositionTables<'data>
impl<'data> Unpin for DecompositionTables<'data>
impl<'data> UnwindSafe for DecompositionTables<'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
Mutably borrows from an owned value. Read more