pub struct MerkleArrayProof {
pub path: Vec<Vec<u8>>,
pub hash_factory: HashFactory,
pub tree_depth: u64,
}
Fields§
§path: Vec<Vec<u8>>
§hash_factory: HashFactory
§tree_depth: u64
Trait Implementations§
Source§impl Clone for MerkleArrayProof
impl Clone for MerkleArrayProof
Source§fn clone(&self) -> MerkleArrayProof
fn clone(&self) -> MerkleArrayProof
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 MerkleArrayProof
impl Debug for MerkleArrayProof
Source§impl<'de> Deserialize<'de> for MerkleArrayProof
impl<'de> Deserialize<'de> for MerkleArrayProof
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 PartialEq for MerkleArrayProof
impl PartialEq for MerkleArrayProof
Source§impl Serialize for MerkleArrayProof
impl Serialize for MerkleArrayProof
impl StructuralPartialEq for MerkleArrayProof
Auto Trait Implementations§
impl Freeze for MerkleArrayProof
impl RefUnwindSafe for MerkleArrayProof
impl Send for MerkleArrayProof
impl Sync for MerkleArrayProof
impl Unpin for MerkleArrayProof
impl UnwindSafe for MerkleArrayProof
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