Struct trie::AnyTrieMut [] [src]

pub struct AnyTrieMut<T: TrieMut>(_);

Represents a mutable trie that is operated on any RLP values.

Methods

impl<T: TrieMut> AnyTrieMut<T>
[src]

[src]

Into the underlying TrieMut object.

[src]

Initialize a new mutable trie.

[src]

Get the root hash of the current trie.

[src]

Insert a value to the trie.

[src]

Delete a value in the trie.

[src]

Get a value in the trie.

Trait Implementations

impl<T: Clone + TrieMut> Clone for AnyTrieMut<T>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<T: Debug + TrieMut> Debug for AnyTrieMut<T>
[src]

[src]

Formats the value using the given formatter.

impl<T: TrieMut + Default> Default for AnyTrieMut<T>
[src]

[src]

Returns the "default value" for a type. Read more