Enum icu::collections::codepointtrie::toml::CodePointDataSlice
source · [−]Expand description
Data slice from a CodePointTrie TOML.
ICU4C exports data as either u8
, u16
, or u32
, which may be converted
to other types as appropriate.
Variants
U8(&'a [u8])
A serialized CodePointTrie data array 8-bit values.
U16(&'a [u16])
A serialized CodePointTrie data array 16-bit values.
U32(&'a [u32])
A serialized CodePointTrie data array 32-bit values.
Auto Trait Implementations
impl<'a> RefUnwindSafe for CodePointDataSlice<'a>
impl<'a> Send for CodePointDataSlice<'a>
impl<'a> Sync for CodePointDataSlice<'a>
impl<'a> Unpin for CodePointDataSlice<'a>
impl<'a> UnwindSafe for CodePointDataSlice<'a>
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