pub struct Checkpoint {
pub namespace_id: NamespaceId,
pub checkpoint_id: CheckpointId,
pub owner: CheckpointOwnerSummary,
pub created_at_ms: u64,
pub expires_at_ms: Option<u64>,
pub captured_seq: ChangeSeq,
pub manifest_no: ManifestNo,
}Expand description
One checkpoint resource described by its durable record.
Fields§
§namespace_id: NamespaceIdNamespace that owns the checkpoint.
checkpoint_id: CheckpointIdDurable checkpoint id used to address the checkpoint for deletion.
owner: CheckpointOwnerSummaryWho owns the checkpoint, including the label carried by a user pin.
created_at_ms: u64Time the checkpoint record was created, in Unix milliseconds.
expires_at_ms: Option<u64>Expiry in Unix milliseconds; collection waits one further grace window.
captured_seq: ChangeSeqNamespace sequence captured by the checkpoint.
manifest_no: ManifestNoManifest pinned by the checkpoint.
Trait Implementations§
Source§impl Clone for Checkpoint
impl Clone for Checkpoint
Source§impl Debug for Checkpoint
impl Debug for Checkpoint
Source§impl<'de> Deserialize<'de> for Checkpoint
impl<'de> Deserialize<'de> for Checkpoint
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
impl Eq for Checkpoint
Source§impl PartialEq for Checkpoint
impl PartialEq for Checkpoint
Source§impl Serialize for Checkpoint
impl Serialize for Checkpoint
impl StructuralPartialEq for Checkpoint
Auto Trait Implementations§
impl Freeze for Checkpoint
impl RefUnwindSafe for Checkpoint
impl Send for Checkpoint
impl Sync for Checkpoint
impl Unpin for Checkpoint
impl UnsafeUnpin for Checkpoint
impl UnwindSafe for Checkpoint
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