pub struct DigitTrieDump<T>where
T: Clone,{
pub node_data: Vec<DigitNodeData<T>>,
pub root: Option<usize>,
pub base: usize,
}Expand description
Container for a dump of a DigitTrie used for serialization purpose.
Fields§
§node_data: Vec<DigitNodeData<T>>The data of the trie node.
root: Option<usize>The root of the trie.
base: usizeThe base for which this trie was built for.
Auto Trait Implementations§
impl<T> Freeze for DigitTrieDump<T>
impl<T> RefUnwindSafe for DigitTrieDump<T>where
T: RefUnwindSafe,
impl<T> Send for DigitTrieDump<T>where
T: Send,
impl<T> Sync for DigitTrieDump<T>where
T: Sync,
impl<T> Unpin for DigitTrieDump<T>where
T: Unpin,
impl<T> UnwindSafe for DigitTrieDump<T>where
T: UnwindSafe,
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