Struct trie::FixedTrieMut [] [src]

pub struct FixedTrieMut<T: TrieMut, K: Encodable, V: Encodable + Decodable>(_, _);

Represents a mutable trie that is operated on a fixed RLP value type.

Methods

impl<T: TrieMut, K: Encodable, V: Encodable + Decodable> FixedTrieMut<T, K, V>
[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, K: Clone + Encodable, V: Clone + Encodable + Decodable> Clone for FixedTrieMut<T, K, V>
[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, K: Debug + Encodable, V: Debug + Encodable + Decodable> Debug for FixedTrieMut<T, K, V>
[src]

[src]

Formats the value using the given formatter.

impl<T: TrieMut + Default, K: Encodable, V: Encodable + Decodable> Default for FixedTrieMut<T, K, V>
[src]

[src]

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