pub struct TrieNodeInfo {
pub trie_index: usize,
pub store_index: usize,
}Expand description
Information stored in a node.
Fields§
§trie_index: usizeThe index of the sub-trie.
store_index: usizeThe index of the node in the trie store.
Trait Implementations§
Source§impl Clone for TrieNodeInfo
impl Clone for TrieNodeInfo
Source§fn clone(&self) -> TrieNodeInfo
fn clone(&self) -> TrieNodeInfo
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 moreAuto Trait Implementations§
impl Freeze for TrieNodeInfo
impl RefUnwindSafe for TrieNodeInfo
impl Send for TrieNodeInfo
impl Sync for TrieNodeInfo
impl Unpin for TrieNodeInfo
impl UnwindSafe for TrieNodeInfo
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