pub struct CheckpointTuple {
pub config: CheckpointConfig,
pub checkpoint: Checkpoint,
pub metadata: CheckpointMetadata,
pub parent_config: Option<CheckpointConfig>,
}Expand description
A complete checkpoint tuple containing all associated data.
Fields§
§config: CheckpointConfigThe configuration that identifies this checkpoint.
checkpoint: CheckpointThe checkpoint data.
metadata: CheckpointMetadataMetadata about how this checkpoint was created.
parent_config: Option<CheckpointConfig>The parent checkpoint configuration, if any.
Trait Implementations§
Source§impl Clone for CheckpointTuple
impl Clone for CheckpointTuple
Source§fn clone(&self) -> CheckpointTuple
fn clone(&self) -> CheckpointTuple
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 CheckpointTuple
impl RefUnwindSafe for CheckpointTuple
impl Send for CheckpointTuple
impl Sync for CheckpointTuple
impl Unpin for CheckpointTuple
impl UnsafeUnpin for CheckpointTuple
impl UnwindSafe for CheckpointTuple
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