pub struct RecoveryObservation {
pub process_alive: bool,
pub github: GithubRunnerObservation,
}Expand description
One attempt’s observed reality at recovery time.
Fields§
§process_alive: boolWhether the child process this agent recorded is still alive. d1 supplies
a process identity that survives a reboot, because a bare PID is reused.
github: GithubRunnerObservationTrait Implementations§
Source§impl Clone for RecoveryObservation
impl Clone for RecoveryObservation
Source§fn clone(&self) -> RecoveryObservation
fn clone(&self) -> RecoveryObservation
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 moreimpl Copy for RecoveryObservation
Source§impl Debug for RecoveryObservation
impl Debug for RecoveryObservation
impl Eq for RecoveryObservation
Source§impl PartialEq for RecoveryObservation
impl PartialEq for RecoveryObservation
impl StructuralPartialEq for RecoveryObservation
Auto Trait Implementations§
impl Freeze for RecoveryObservation
impl RefUnwindSafe for RecoveryObservation
impl Send for RecoveryObservation
impl Sync for RecoveryObservation
impl Unpin for RecoveryObservation
impl UnsafeUnpin for RecoveryObservation
impl UnwindSafe for RecoveryObservation
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