pub struct TrieSetOwned { /* private fields */ }
Expand description
An owned trie set.
Implementations§
Source§impl TrieSetOwned
impl TrieSetOwned
Sourcepub fn from_scalars<I, C>(scalars: I) -> Result<TrieSetOwned>
pub fn from_scalars<I, C>(scalars: I) -> Result<TrieSetOwned>
Create a new trie set from a set of Unicode scalar values.
This returns an error if a set could not be sufficiently compressed to fit into a trie.
Sourcepub fn from_codepoints<I, C>(codepoints: I) -> Result<TrieSetOwned>
pub fn from_codepoints<I, C>(codepoints: I) -> Result<TrieSetOwned>
Create a new trie set from a set of Unicode scalar values.
This returns an error if a set could not be sufficiently compressed to
fit into a trie. This also returns an error if any of the given
codepoints are greater than 0x10FFFF
.
Sourcepub fn as_slice(&self) -> TrieSetSlice<'_>
pub fn as_slice(&self) -> TrieSetSlice<'_>
Return this set as a slice.
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 Clone for TrieSetOwned
impl Clone for TrieSetOwned
Source§fn clone(&self) -> TrieSetOwned
fn clone(&self) -> TrieSetOwned
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 moreAuto Trait Implementations§
impl Freeze for TrieSetOwned
impl RefUnwindSafe for TrieSetOwned
impl Send for TrieSetOwned
impl Sync for TrieSetOwned
impl Unpin for TrieSetOwned
impl UnwindSafe for TrieSetOwned
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