Struct icu::collections::char16trie::Char16Trie
source · pub struct Char16Trie<'data> { /* private fields */ }
Expand description
This struct represents a de-serialized Char16Trie
that was exported from
ICU binary data.
Light-weight, non-const reader class for a CharsTrie
. Traverses a
char-serialized data structure with minimal state, for mapping 16-bit-unit
sequences to non-negative integer values.
For more information:
Implementations§
source§impl<'data> Char16Trie<'data>
impl<'data> Char16Trie<'data>
sourcepub fn new(data: ZeroVec<'data, u16>) -> Char16Trie<'data>
pub fn new(data: ZeroVec<'data, u16>) -> Char16Trie<'data>
Returns a new Char16Trie
with ownership of the provided data.
sourcepub fn iter(&self) -> Char16TrieIterator<'_>
pub fn iter(&self) -> Char16TrieIterator<'_>
Returns a new Char16TrieIterator
backed by borrowed data from the trie
data
Trait Implementations§
source§impl<'data> Bake for Char16Trie<'data>
impl<'data> Bake for Char16Trie<'data>
source§fn bake(&self, env: &CrateEnv) -> TokenStream
fn bake(&self, env: &CrateEnv) -> TokenStream
source§impl<'data> BakeSize for Char16Trie<'data>
impl<'data> BakeSize for Char16Trie<'data>
source§fn borrows_size(&self) -> usize
fn borrows_size(&self) -> usize
Returns the size
source§impl<'data> Clone for Char16Trie<'data>
impl<'data> Clone for Char16Trie<'data>
source§fn clone(&self) -> Char16Trie<'data>
fn clone(&self) -> Char16Trie<'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 Char16Trie<'data>
impl<'data> Debug for Char16Trie<'data>
source§impl<'de, 'data> Deserialize<'de> for Char16Trie<'data>where
'de: 'data,
impl<'de, 'data> Deserialize<'de> for Char16Trie<'data>where
'de: 'data,
source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<Char16Trie<'data>, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<Char16Trie<'data>, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl<'data> PartialEq for Char16Trie<'data>
impl<'data> PartialEq for Char16Trie<'data>
source§impl<'data> Serialize for Char16Trie<'data>
impl<'data> Serialize for Char16Trie<'data>
source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
source§impl<'zf, 'zf_inner> ZeroFrom<'zf, Char16Trie<'zf_inner>> for Char16Trie<'zf>
impl<'zf, 'zf_inner> ZeroFrom<'zf, Char16Trie<'zf_inner>> for Char16Trie<'zf>
source§fn zero_from(this: &'zf Char16Trie<'zf_inner>) -> Char16Trie<'zf>
fn zero_from(this: &'zf Char16Trie<'zf_inner>) -> Char16Trie<'zf>
Clone the other
C
into a struct that may retain references into C
.impl<'data> Eq for Char16Trie<'data>
impl<'data> StructuralPartialEq for Char16Trie<'data>
Auto Trait Implementations§
impl<'data> Freeze for Char16Trie<'data>
impl<'data> RefUnwindSafe for Char16Trie<'data>
impl<'data> Send for Char16Trie<'data>
impl<'data> Sync for Char16Trie<'data>
impl<'data> Unpin for Char16Trie<'data>
impl<'data> UnwindSafe for Char16Trie<'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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more