Struct DecompositionTables

struct DecompositionTables<'data> { ... }

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

Implementations

impl MaybeAsVarULE for DecompositionTables<'_>

impl<'a> Yokeable for DecompositionTables<'static>

fn transform(self: &'a Self) -> &'a <Self as >::Output
fn transform_owned(self: Self) -> <Self as >::Output
unsafe fn make(this: <Self as >::Output) -> Self
fn transform_mut<F>(self: &'a mut Self, f: F)
where
    F: 'static + for<'b> FnOnce(&'b mut <Self as >::Output)

impl<'data> Clone for DecompositionTables<'data>

fn clone(self: &Self) -> DecompositionTables<'data>

impl<'data> Debug for DecompositionTables<'data>

fn fmt(self: &Self, f: &mut Formatter<'_>) -> Result

impl<'data> Freeze for DecompositionTables<'data>

impl<'data> PartialEq for DecompositionTables<'data>

fn eq(self: &Self, other: &DecompositionTables<'data>) -> bool

impl<'data> RefUnwindSafe for DecompositionTables<'data>

impl<'data> Send for DecompositionTables<'data>

impl<'data> StructuralPartialEq for DecompositionTables<'data>

impl<'data> Sync for DecompositionTables<'data>

impl<'data> Unpin for DecompositionTables<'data>

impl<'data> UnsafeUnpin for DecompositionTables<'data>

impl<'data> UnwindSafe for DecompositionTables<'data>

impl<'zf, 'zf_inner> ZeroFrom for DecompositionTables<'zf>

fn zero_from(this: &'zf DecompositionTables<'zf_inner>) -> Self

impl<T> Any for DecompositionTables<'data>

fn type_id(self: &Self) -> TypeId

impl<T> Borrow for DecompositionTables<'data>

fn borrow(self: &Self) -> &T

impl<T> BorrowMut for DecompositionTables<'data>

fn borrow_mut(self: &mut Self) -> &mut T

impl<T> CloneToUninit for DecompositionTables<'data>

unsafe fn clone_to_uninit(self: &Self, dest: *mut u8)

impl<T> ErasedDestructor for DecompositionTables<'data>

impl<T> From for DecompositionTables<'data>

fn from(t: T) -> T

Returns the argument unchanged.

impl<T> ToOwned for DecompositionTables<'data>

fn to_owned(self: &Self) -> T
fn clone_into(self: &Self, target: &mut T)

impl<T, U> Into for DecompositionTables<'data>

fn into(self: Self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

impl<T, U> TryFrom for DecompositionTables<'data>

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

impl<T, U> TryInto for DecompositionTables<'data>

fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>