pub enum NodeOwned<H> {
    Empty,
    Leaf(NibbleVecValueOwned<H>),
    Extension(NibbleVecNodeHandleOwned<H>),
    Branch([Option<NodeHandleOwned<H>>; 16]Option<ValueOwned<H>>),
    NibbledBranch(NibbleVec[Option<NodeHandleOwned<H>>; 16]Option<ValueOwned<H>>),
    Value(Bytes, H),
}
Expand description

Owned version of Node.

Variants

Empty

Null trie node; could be an empty root or an empty branch entry.

Leaf(NibbleVecValueOwned<H>)

Leaf node; has key slice and value. Value may not be empty.

Extension(NibbleVecNodeHandleOwned<H>)

Extension node; has key slice and node data. Data may not be null.

Branch([Option<NodeHandleOwned<H>>; 16]Option<ValueOwned<H>>)

Branch node; has slice of child nodes (each possibly null) and an optional immediate node data.

NibbledBranch(NibbleVec[Option<NodeHandleOwned<H>>; 16]Option<ValueOwned<H>>)

Branch node with support for a nibble (when extension nodes are not used).

Value(Bytes, H)

Node that represents a value.

This variant is only constructed when working with a crate::TrieCache. It is only used to cache a raw value.

Implementations

Convert to its encoded format.

Returns an iterator over all existing children with their optional nibble.

Returns the hash of the data attached to this node.

Returns the data attached to this node.

Returns the partial key of this node.

Returns the size in bytes of this node in memory.

This also includes the size of any inline child nodes.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

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

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.