pub struct AptosInclusionProof {
pub transaction_proof: Vec<u8>,
pub event_proof: Vec<u8>,
pub version: u64,
}Expand description
Aptos inclusion proof
Fields§
§transaction_proof: Vec<u8>Transaction proof bytes
event_proof: Vec<u8>Event proof bytes
version: u64Version number
Implementations§
Trait Implementations§
Source§impl Clone for AptosInclusionProof
impl Clone for AptosInclusionProof
Source§fn clone(&self) -> AptosInclusionProof
fn clone(&self) -> AptosInclusionProof
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 AptosInclusionProof
impl Debug for AptosInclusionProof
Source§impl<'de> Deserialize<'de> for AptosInclusionProof
impl<'de> Deserialize<'de> for AptosInclusionProof
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 AptosInclusionProof
impl PartialEq for AptosInclusionProof
Source§impl Serialize for AptosInclusionProof
impl Serialize for AptosInclusionProof
impl Eq for AptosInclusionProof
impl StructuralPartialEq for AptosInclusionProof
Auto Trait Implementations§
impl Freeze for AptosInclusionProof
impl RefUnwindSafe for AptosInclusionProof
impl Send for AptosInclusionProof
impl Sync for AptosInclusionProof
impl Unpin for AptosInclusionProof
impl UnsafeUnpin for AptosInclusionProof
impl UnwindSafe for AptosInclusionProof
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.