pub enum TrieResult {
Failed,
Prefix,
Exists,
}Expand description
Result of searching for a key in a trie
Variants§
Trait Implementations§
Source§impl Clone for TrieResult
impl Clone for TrieResult
Source§fn clone(&self) -> TrieResult
fn clone(&self) -> TrieResult
Returns a duplicate 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 Debug for TrieResult
impl Debug for TrieResult
Source§impl PartialEq for TrieResult
impl PartialEq for TrieResult
impl Copy for TrieResult
impl Eq for TrieResult
impl StructuralPartialEq for TrieResult
Auto Trait Implementations§
impl Freeze for TrieResult
impl RefUnwindSafe for TrieResult
impl Send for TrieResult
impl Sync for TrieResult
impl Unpin for TrieResult
impl UnwindSafe for TrieResult
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