Struct trie::SecureTrieMut [] [src]

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

Represents a secure mutable trie where the key is hashed.

Methods

impl<T: TrieMut> SecureTrieMut<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 SecureTrieMut<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 SecureTrieMut<T>
[src]

[src]

Formats the value using the given formatter.

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

[src]

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