pub struct SuiCheckpointProof {
pub tx_digest: [u8; 32],
pub checkpoint_sequence: u64,
pub checkpoint_contents_hash: [u8; 32],
pub effects: Vec<u8>,
pub events: Vec<u8>,
pub certified: bool,
}Expand description
Sui checkpoint proof of transaction effects certification.
Fields§
§tx_digest: [u8; 32]Transaction digest
checkpoint_sequence: u64Checkpoint sequence number
checkpoint_contents_hash: [u8; 32]Checkpoint contents hash
effects: Vec<u8>Transaction effects bytes
events: Vec<u8>Event bytes
certified: boolWhether the checkpoint is certified
Trait Implementations§
Source§impl Clone for SuiCheckpointProof
impl Clone for SuiCheckpointProof
Source§fn clone(&self) -> SuiCheckpointProof
fn clone(&self) -> SuiCheckpointProof
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 SuiCheckpointProof
impl Debug for SuiCheckpointProof
Source§impl<'de> Deserialize<'de> for SuiCheckpointProof
impl<'de> Deserialize<'de> for SuiCheckpointProof
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 SuiCheckpointProof
impl PartialEq for SuiCheckpointProof
Source§impl Serialize for SuiCheckpointProof
impl Serialize for SuiCheckpointProof
impl Eq for SuiCheckpointProof
impl StructuralPartialEq for SuiCheckpointProof
Auto Trait Implementations§
impl Freeze for SuiCheckpointProof
impl RefUnwindSafe for SuiCheckpointProof
impl Send for SuiCheckpointProof
impl Sync for SuiCheckpointProof
impl Unpin for SuiCheckpointProof
impl UnsafeUnpin for SuiCheckpointProof
impl UnwindSafe for SuiCheckpointProof
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