Struct trie_generic::TNode
source · [−]pub struct TNode<T: Display + Debug> {
pub is_terminal: bool,
pub content: Option<T>,
pub children: BTreeMap<char, TNode<T>>,
}
Fields
is_terminal: bool
content: Option<T>
children: BTreeMap<char, TNode<T>>
Implementations
Trait Implementations
Auto Trait Implementations
impl<T> RefUnwindSafe for TNode<T>where
T: RefUnwindSafe,
impl<T> Send for TNode<T>where
T: Send,
impl<T> Sync for TNode<T>where
T: Sync,
impl<T> Unpin for TNode<T>where
T: Unpin,
impl<T> UnwindSafe for TNode<T>where
T: UnwindSafe + RefUnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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