Struct ucd_trie::TrieSetOwned
source · [−]pub struct TrieSetOwned { /* private fields */ }
Expand description
An owned trie set.
Implementations
sourceimpl TrieSetOwned
impl TrieSetOwned
sourcepub fn from_scalars<I, C>(scalars: I) -> Result<TrieSetOwned> where
I: IntoIterator<Item = C>,
C: Borrow<char>,
pub fn from_scalars<I, C>(scalars: I) -> Result<TrieSetOwned> where
I: IntoIterator<Item = C>,
C: Borrow<char>,
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> where
I: IntoIterator<Item = C>,
C: Borrow<u32>,
pub fn from_codepoints<I, C>(codepoints: I) -> Result<TrieSetOwned> where
I: IntoIterator<Item = C>,
C: Borrow<u32>,
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
sourceimpl Clone for TrieSetOwned
impl Clone for TrieSetOwned
sourcefn clone(&self) -> TrieSetOwned
fn clone(&self) -> TrieSetOwned
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
Auto Trait Implementations
impl RefUnwindSafe for TrieSetOwned
impl Send for TrieSetOwned
impl Sync for TrieSetOwned
impl Unpin for TrieSetOwned
impl UnwindSafe for TrieSetOwned
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more