pub struct TrieProofNode(/* private fields */);Implementations§
Source§impl TrieProofNode
 
impl TrieProofNode
pub fn new( children_table: VanillaChildrenTable<MerkleHash>, maybe_value: Option<Box<[u8]>>, compressed_path: CompressedPathRaw, path_without_first_nibble: bool, ) -> Self
Trait Implementations§
Source§impl Clone for TrieProofNode
 
impl Clone for TrieProofNode
Source§fn clone(&self) -> TrieProofNode
 
fn clone(&self) -> TrieProofNode
Returns a copy 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 moreSource§impl Debug for TrieProofNode
 
impl Debug for TrieProofNode
Source§impl Decodable for TrieProofNode
 
impl Decodable for TrieProofNode
Source§impl Default for TrieProofNode
 
impl Default for TrieProofNode
Source§fn default() -> TrieProofNode
 
fn default() -> TrieProofNode
Returns the “default value” for a type. Read more
Source§impl DerefMut for TrieProofNode
 
impl DerefMut for TrieProofNode
Source§impl<'de> Deserialize<'de> for TrieProofNode
 
impl<'de> Deserialize<'de> for TrieProofNode
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
    __D: Deserializer<'de>,
 
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
    __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Encodable for TrieProofNode
 
impl Encodable for TrieProofNode
Source§impl PartialEq for TrieProofNode
 
impl PartialEq for TrieProofNode
Source§impl Serialize for TrieProofNode
 
impl Serialize for TrieProofNode
Source§impl Deref for TrieProofNode
 
impl Deref for TrieProofNode
impl StructuralPartialEq for TrieProofNode
Auto Trait Implementations§
impl Freeze for TrieProofNode
impl RefUnwindSafe for TrieProofNode
impl Send for TrieProofNode
impl Sync for TrieProofNode
impl Unpin for TrieProofNode
impl UnwindSafe for TrieProofNode
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