pub struct AgentProcessCheckpoint {
pub run_id: String,
pub stage: String,
pub attempt: u32,
pub branch: String,
pub worktree: PathBuf,
pub process: ProcessIdentity,
pub worker: WorkerCredentials,
pub started_at_ms: i64,
}Fields§
§run_id: String§stage: String§attempt: u32§branch: String§worktree: PathBuf§process: ProcessIdentity§worker: WorkerCredentials§started_at_ms: i64Trait Implementations§
Source§impl Clone for AgentProcessCheckpoint
impl Clone for AgentProcessCheckpoint
Source§fn clone(&self) -> AgentProcessCheckpoint
fn clone(&self) -> AgentProcessCheckpoint
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 moreAuto Trait Implementations§
impl Freeze for AgentProcessCheckpoint
impl RefUnwindSafe for AgentProcessCheckpoint
impl Send for AgentProcessCheckpoint
impl Sync for AgentProcessCheckpoint
impl Unpin for AgentProcessCheckpoint
impl UnsafeUnpin for AgentProcessCheckpoint
impl UnwindSafe for AgentProcessCheckpoint
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