Enum icu::collections::char16trie::TrieResult
source · [−]Expand description
An enum representing the return value from a lookup in Char16Trie
.
Variants
NoMatch
The input unit(s) did not continue a matching string. Once next() returns TrieResult::NoMatch, all further calls to next() will also return TrieResult::NoMatch.
NoValue
The input unit(s) matched a string but there is no value for the string so far. (It is a prefix of a longer string.)
FinalValue(i32)
The input unit(s) continued a matching string and there is a value for the string so far. No further input byte/unit can continue a matching string.
Intermediate(i32)
The input unit(s) continued a matching string and there is a value for the string so far. Another input byte/unit can continue a matching string.
Trait Implementations
sourceimpl Clone for TrieResult
impl Clone for TrieResult
sourcefn clone(&self) -> TrieResult
fn clone(&self) -> TrieResult
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
sourceimpl Debug for TrieResult
impl Debug for TrieResult
sourceimpl PartialEq<TrieResult> for TrieResult
impl PartialEq<TrieResult> for TrieResult
sourcefn eq(&self, other: &TrieResult) -> bool
fn eq(&self, other: &TrieResult) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &TrieResult) -> bool
fn ne(&self, other: &TrieResult) -> bool
This method tests for !=
.
impl Copy for TrieResult
impl StructuralPartialEq for TrieResult
Auto Trait Implementations
impl RefUnwindSafe for TrieResult
impl Send for TrieResult
impl Sync for TrieResult
impl Unpin for TrieResult
impl UnwindSafe for TrieResult
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
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.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more