pub struct AptosLedgerProof {
pub version: u64,
pub transaction_proof: Vec<u8>,
pub ledger_info: Vec<u8>,
pub events: Vec<u8>,
pub success: bool,
}Expand description
Aptos ledger info proof of transaction execution.
Fields§
§version: u64Transaction version
transaction_proof: Vec<u8>Transaction proof bytes
ledger_info: Vec<u8>Ledger info bytes
events: Vec<u8>Event bytes
success: boolWhether the transaction succeeded
Trait Implementations§
Source§impl Clone for AptosLedgerProof
impl Clone for AptosLedgerProof
Source§fn clone(&self) -> AptosLedgerProof
fn clone(&self) -> AptosLedgerProof
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 AptosLedgerProof
impl Debug for AptosLedgerProof
Source§impl<'de> Deserialize<'de> for AptosLedgerProof
impl<'de> Deserialize<'de> for AptosLedgerProof
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 AptosLedgerProof
impl PartialEq for AptosLedgerProof
Source§impl Serialize for AptosLedgerProof
impl Serialize for AptosLedgerProof
impl Eq for AptosLedgerProof
impl StructuralPartialEq for AptosLedgerProof
Auto Trait Implementations§
impl Freeze for AptosLedgerProof
impl RefUnwindSafe for AptosLedgerProof
impl Send for AptosLedgerProof
impl Sync for AptosLedgerProof
impl Unpin for AptosLedgerProof
impl UnsafeUnpin for AptosLedgerProof
impl UnwindSafe for AptosLedgerProof
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