pub struct CheckpointSnapshot {
pub timeline_id: String,
pub tick: u64,
pub event_hash: String,
pub state_hash: String,
}Expand description
Immutable checkpoint record produced by CheckpointBuilder::build.
Fields§
§timeline_id: String§tick: u64§event_hash: String§state_hash: StringTrait Implementations§
Source§impl Clone for CheckpointSnapshot
impl Clone for CheckpointSnapshot
Source§fn clone(&self) -> CheckpointSnapshot
fn clone(&self) -> CheckpointSnapshot
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 CheckpointSnapshot
impl Debug for CheckpointSnapshot
Source§impl<'de> Deserialize<'de> for CheckpointSnapshot
impl<'de> Deserialize<'de> for CheckpointSnapshot
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 CheckpointSnapshot
impl PartialEq for CheckpointSnapshot
Source§impl Serialize for CheckpointSnapshot
impl Serialize for CheckpointSnapshot
impl StructuralPartialEq for CheckpointSnapshot
Auto Trait Implementations§
impl Freeze for CheckpointSnapshot
impl RefUnwindSafe for CheckpointSnapshot
impl Send for CheckpointSnapshot
impl Sync for CheckpointSnapshot
impl Unpin for CheckpointSnapshot
impl UnsafeUnpin for CheckpointSnapshot
impl UnwindSafe for CheckpointSnapshot
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