pub struct MerkleSection {
pub leaf_count: usize,
pub root: Option<String>,
pub checkpoint_id: Option<String>,
pub inclusion_proofs: Vec<InclusionProofEntry>,
}Expand description
Merkle section of the receipt.
Fields§
§leaf_count: usize§root: Option<String>§checkpoint_id: Option<String>§inclusion_proofs: Vec<InclusionProofEntry>Trait Implementations§
Source§impl Clone for MerkleSection
impl Clone for MerkleSection
Source§fn clone(&self) -> MerkleSection
fn clone(&self) -> MerkleSection
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 moreSource§impl Debug for MerkleSection
impl Debug for MerkleSection
Source§impl Default for MerkleSection
impl Default for MerkleSection
Source§fn default() -> MerkleSection
fn default() -> MerkleSection
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MerkleSection
impl<'de> Deserialize<'de> for MerkleSection
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
Auto Trait Implementations§
impl Freeze for MerkleSection
impl RefUnwindSafe for MerkleSection
impl Send for MerkleSection
impl Sync for MerkleSection
impl Unpin for MerkleSection
impl UnsafeUnpin for MerkleSection
impl UnwindSafe for MerkleSection
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