Struct patricia_trie::recorder::Record[][src]

pub struct Record<HO> {
    pub depth: u32,
    pub data: Bytes,
    pub hash: HO,
}

A record of a visited node.

Fields

The depth of this node.

The raw data of the node.

The hash of the data.

Trait Implementations

impl<HO: PartialEq> PartialEq for Record<HO>
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl<HO: Eq> Eq for Record<HO>
[src]

impl<HO: Debug> Debug for Record<HO>
[src]

Formats the value using the given formatter. Read more

impl<HO: Clone> Clone for Record<HO>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl<HO> Send for Record<HO> where
    HO: Send

impl<HO> Sync for Record<HO> where
    HO: Sync