pub struct SuiCheckpoint {
pub sequence_number: u64,
pub digest: [u8; 32],
pub epoch: u64,
pub network_total_transactions: u64,
pub certified: bool,
}Expand description
Sui checkpoint
Fields§
§sequence_number: u64§digest: [u8; 32]§epoch: u64§network_total_transactions: u64§certified: boolTrait Implementations§
Source§impl Clone for SuiCheckpoint
impl Clone for SuiCheckpoint
Source§fn clone(&self) -> SuiCheckpoint
fn clone(&self) -> SuiCheckpoint
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 moreAuto Trait Implementations§
impl Freeze for SuiCheckpoint
impl RefUnwindSafe for SuiCheckpoint
impl Send for SuiCheckpoint
impl Sync for SuiCheckpoint
impl Unpin for SuiCheckpoint
impl UnsafeUnpin for SuiCheckpoint
impl UnwindSafe for SuiCheckpoint
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