pub struct TrieSetSlice<'a> { /* private fields */ }
Expand description
A borrowed trie set.
Implementations§
Source§impl<'a> TrieSetSlice<'a>
impl<'a> TrieSetSlice<'a>
Sourcepub fn contains_char(&self, c: char) -> bool
pub fn contains_char(&self, c: char) -> bool
Returns true if and only if the given Unicode scalar value is in this set.
Sourcepub fn contains_u32(&self, cp: u32) -> bool
pub fn contains_u32(&self, cp: u32) -> bool
Returns true if and only if the given codepoint is in this set.
If the given value exceeds the codepoint range (i.e., it’s greater
than 0x10FFFF
), then this returns false.
Trait Implementations§
Source§impl<'a> Clone for TrieSetSlice<'a>
impl<'a> Clone for TrieSetSlice<'a>
Source§fn clone(&self) -> TrieSetSlice<'a>
fn clone(&self) -> TrieSetSlice<'a>
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<'a> Debug for TrieSetSlice<'a>
impl<'a> Debug for TrieSetSlice<'a>
impl<'a> Copy for TrieSetSlice<'a>
Auto Trait Implementations§
impl<'a> Freeze for TrieSetSlice<'a>
impl<'a> RefUnwindSafe for TrieSetSlice<'a>
impl<'a> Send for TrieSetSlice<'a>
impl<'a> Sync for TrieSetSlice<'a>
impl<'a> Unpin for TrieSetSlice<'a>
impl<'a> UnwindSafe for TrieSetSlice<'a>
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