pub struct TrieNode<T, K> {
pub value: T,
/* private fields */
}
Expand description
Trie木のノード
Fields§
§value: T
ノードに格納している値
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<T, K> Freeze for TrieNode<T, K>where
T: Freeze,
impl<T, K> RefUnwindSafe for TrieNode<T, K>where
T: RefUnwindSafe,
K: RefUnwindSafe,
impl<T, K> !Send for TrieNode<T, K>
impl<T, K> !Sync for TrieNode<T, K>
impl<T, K> Unpin for TrieNode<T, K>
impl<T, K> UnwindSafe for TrieNode<T, K>
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