pub struct CheckpointRecord {Show 16 fields
pub checkpoint_id: String,
pub run_id: String,
pub graph_id: String,
pub graph_version: String,
pub next_node_cursor: String,
pub state: Value,
pub state_digest: String,
pub budgets: Value,
pub budget_counters: Value,
pub dependency_summary: Value,
pub dependency_digest: String,
pub terminal_cursor: u64,
pub event_cursor: u64,
pub checkpoint_digest: String,
pub created_at: String,
pub consumed_at: Option<String>,
}Fields§
§checkpoint_id: String§run_id: String§graph_id: String§graph_version: String§next_node_cursor: String§state: Value§state_digest: String§budgets: Value§budget_counters: Value§dependency_summary: Value§dependency_digest: String§terminal_cursor: u64§event_cursor: u64§checkpoint_digest: String§created_at: String§consumed_at: Option<String>Trait Implementations§
Source§impl Clone for CheckpointRecord
impl Clone for CheckpointRecord
Source§fn clone(&self) -> CheckpointRecord
fn clone(&self) -> CheckpointRecord
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 CheckpointRecord
impl Debug for CheckpointRecord
Source§impl PartialEq for CheckpointRecord
impl PartialEq for CheckpointRecord
impl StructuralPartialEq for CheckpointRecord
Auto Trait Implementations§
impl Freeze for CheckpointRecord
impl RefUnwindSafe for CheckpointRecord
impl Send for CheckpointRecord
impl Sync for CheckpointRecord
impl Unpin for CheckpointRecord
impl UnsafeUnpin for CheckpointRecord
impl UnwindSafe for CheckpointRecord
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