pub struct FixedSecureTrieMut<T: TrieMut, K: AsRef<[u8]>, V: Encodable + Decodable>(/* private fields */);Expand description
Represents a secure mutable trie where the key is hashed, and operated on a fixed RLP value type.
Implementations§
Trait Implementations§
Source§impl<T: Clone + TrieMut, K: Clone + AsRef<[u8]>, V: Clone + Encodable + Decodable> Clone for FixedSecureTrieMut<T, K, V>
impl<T: Clone + TrieMut, K: Clone + AsRef<[u8]>, V: Clone + Encodable + Decodable> Clone for FixedSecureTrieMut<T, K, V>
Source§fn clone(&self) -> FixedSecureTrieMut<T, K, V>
fn clone(&self) -> FixedSecureTrieMut<T, K, V>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl<T, K, V> Freeze for FixedSecureTrieMut<T, K, V>where
T: Freeze,
impl<T, K, V> RefUnwindSafe for FixedSecureTrieMut<T, K, V>
impl<T, K, V> Send for FixedSecureTrieMut<T, K, V>
impl<T, K, V> Sync for FixedSecureTrieMut<T, K, V>
impl<T, K, V> Unpin for FixedSecureTrieMut<T, K, V>
impl<T, K, V> UnwindSafe for FixedSecureTrieMut<T, K, V>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more