pub struct TransactionProof {
pub tx_digest: [u8; 32],
pub checkpoint: u64,
pub effects_signature: Vec<u8>,
}Expand description
Transaction proof for verifying a transaction was included in a checkpoint.
Fields§
§tx_digest: [u8; 32]Transaction digest
checkpoint: u64Checkpoint sequence number
effects_signature: Vec<u8>Effects signature proving inclusion
Implementations§
Trait Implementations§
Source§impl Clone for TransactionProof
impl Clone for TransactionProof
Source§fn clone(&self) -> TransactionProof
fn clone(&self) -> TransactionProof
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 TransactionProof
impl Debug for TransactionProof
Source§impl<'de> Deserialize<'de> for TransactionProof
impl<'de> Deserialize<'de> for TransactionProof
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 TransactionProof
impl RefUnwindSafe for TransactionProof
impl Send for TransactionProof
impl Sync for TransactionProof
impl Unpin for TransactionProof
impl UnsafeUnpin for TransactionProof
impl UnwindSafe for TransactionProof
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