pub struct BoundaryCheckpoint {
pub checkpoint_id: Option<String>,
pub sequence: Option<i64>,
pub previous_checkpoint_hash: Option<String>,
pub receipt_count: Option<i32>,
pub record_count: Option<i32>,
pub root_hash: Option<String>,
pub checkpoint_hash: Option<String>,
pub created_at: Option<String>,
}Fields§
§checkpoint_id: Option<String>§sequence: Option<i64>§previous_checkpoint_hash: Option<String>§receipt_count: Option<i32>§record_count: Option<i32>§root_hash: Option<String>§checkpoint_hash: Option<String>§created_at: Option<String>Implementations§
Source§impl BoundaryCheckpoint
impl BoundaryCheckpoint
pub fn new() -> BoundaryCheckpoint
Trait Implementations§
Source§impl Clone for BoundaryCheckpoint
impl Clone for BoundaryCheckpoint
Source§fn clone(&self) -> BoundaryCheckpoint
fn clone(&self) -> BoundaryCheckpoint
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 BoundaryCheckpoint
impl Debug for BoundaryCheckpoint
Source§impl Default for BoundaryCheckpoint
impl Default for BoundaryCheckpoint
Source§fn default() -> BoundaryCheckpoint
fn default() -> BoundaryCheckpoint
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BoundaryCheckpoint
impl<'de> Deserialize<'de> for BoundaryCheckpoint
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 BoundaryCheckpoint
impl PartialEq for BoundaryCheckpoint
Source§fn eq(&self, other: &BoundaryCheckpoint) -> bool
fn eq(&self, other: &BoundaryCheckpoint) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for BoundaryCheckpoint
impl Serialize for BoundaryCheckpoint
impl StructuralPartialEq for BoundaryCheckpoint
Auto Trait Implementations§
impl Freeze for BoundaryCheckpoint
impl RefUnwindSafe for BoundaryCheckpoint
impl Send for BoundaryCheckpoint
impl Sync for BoundaryCheckpoint
impl Unpin for BoundaryCheckpoint
impl UnsafeUnpin for BoundaryCheckpoint
impl UnwindSafe for BoundaryCheckpoint
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