Struct icu_collections::char16trie::trie::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>) -> Self
pub fn new(data: ZeroVec<'data, u16>) -> Self
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> 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<'data> PartialEq for Char16Trie<'data>
impl<'data> PartialEq for Char16Trie<'data>
source§fn eq(&self, other: &Char16Trie<'data>) -> bool
fn eq(&self, other: &Char16Trie<'data>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.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>) -> Self
fn zero_from(this: &'zf Char16Trie<'zf_inner>) -> Self
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