Struct trie_db::recorder::Recorder [−][src]
pub struct Recorder<HO> { /* fields omitted */ }
Records trie nodes as they pass it.
Implementations
impl<HO: Copy> Recorder<HO>
[src]
impl<HO: Copy> Recorder<HO>
[src]pub fn new() -> Self
[src]
Create a new Recorder
which records all given nodes.
pub fn with_depth(depth: u32) -> Self
[src]
Create a Recorder
which only records nodes beyond a given depth.
pub fn record(&mut self, hash: &HO, data: &[u8], depth: u32)
[src]
Record a visited node, given its hash, data, and depth.
pub fn drain(&mut self) -> Vec<Record<HO>>ⓘ
[src]
Drain all visited records.
Trait Implementations
Auto Trait Implementations
impl<HO> RefUnwindSafe for Recorder<HO> where
HO: RefUnwindSafe,
HO: RefUnwindSafe,
impl<HO> Send for Recorder<HO> where
HO: Send,
HO: Send,
impl<HO> Sync for Recorder<HO> where
HO: Sync,
HO: Sync,
impl<HO> Unpin for Recorder<HO> where
HO: Unpin,
HO: Unpin,
impl<HO> UnwindSafe for Recorder<HO> where
HO: UnwindSafe,
HO: UnwindSafe,