pub struct OwnedNode<D: Borrow<[u8]>> { /* private fields */ }
Expand description
An OwnedNode
is an owned type from which a Node
can be constructed which borrows data from
the OwnedNode
. This is useful for trie iterators.
Construct an OwnedNode
by decoding an owned data source according to some codec.
Returns a reference to the backing data.
Returns a reference to the node decode plan.
Construct a Node
by borrowing data from this struct.
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 !=
.
impl<T> Any for T where
T: 'static + ?Sized,
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more
impl<T, U> Into<U> for T where
U: From<T>,
The type returned in the event of a conversion error.
The type returned in the event of a conversion error.