pub struct CheckpointMeta {
pub action_id: Option<String>,
pub action_version: Option<String>,
pub preview_hash: Option<String>,
pub replay_eligible: bool,
}Expand description
Optional agent-checkpoint metadata attached to a durable version record.
Fields§
§action_id: Option<String>Id of the agent action that produced this record.
action_version: Option<String>Version pin for action_id (e.g. an action revision string).
preview_hash: Option<String>Content hash linking this record to a rendered preview artifact.
replay_eligible: boolWhether this record can be deterministically re-run.
Trait Implementations§
Source§impl Clone for CheckpointMeta
impl Clone for CheckpointMeta
Source§fn clone(&self) -> CheckpointMeta
fn clone(&self) -> CheckpointMeta
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 CheckpointMeta
impl Debug for CheckpointMeta
Source§impl Default for CheckpointMeta
impl Default for CheckpointMeta
Source§fn default() -> CheckpointMeta
fn default() -> CheckpointMeta
Returns the “default value” for a type. Read more
Source§impl PartialEq for CheckpointMeta
impl PartialEq for CheckpointMeta
Source§fn eq(&self, other: &CheckpointMeta) -> bool
fn eq(&self, other: &CheckpointMeta) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CheckpointMeta
Auto Trait Implementations§
impl Freeze for CheckpointMeta
impl RefUnwindSafe for CheckpointMeta
impl Send for CheckpointMeta
impl Sync for CheckpointMeta
impl Unpin for CheckpointMeta
impl UnsafeUnpin for CheckpointMeta
impl UnwindSafe for CheckpointMeta
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