pub struct CommandCleanupEvidence {
pub trigger: CommandCleanupTrigger,
pub elapsed_ms: u64,
pub reap_grace_ms: u64,
pub io_drain_grace_ms: u64,
pub kill_attempted: bool,
pub verified: bool,
pub error: Option<String>,
}Fields§
§trigger: CommandCleanupTrigger§elapsed_ms: u64§reap_grace_ms: u64§io_drain_grace_ms: u64§kill_attempted: bool§verified: bool§error: Option<String>Trait Implementations§
Source§impl Clone for CommandCleanupEvidence
impl Clone for CommandCleanupEvidence
Source§fn clone(&self) -> CommandCleanupEvidence
fn clone(&self) -> CommandCleanupEvidence
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 CommandCleanupEvidence
impl Debug for CommandCleanupEvidence
Source§impl<'de> Deserialize<'de> for CommandCleanupEvidence
impl<'de> Deserialize<'de> for CommandCleanupEvidence
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 CommandCleanupEvidence
Source§impl PartialEq for CommandCleanupEvidence
impl PartialEq for CommandCleanupEvidence
Source§impl Serialize for CommandCleanupEvidence
impl Serialize for CommandCleanupEvidence
impl StructuralPartialEq for CommandCleanupEvidence
Auto Trait Implementations§
impl Freeze for CommandCleanupEvidence
impl RefUnwindSafe for CommandCleanupEvidence
impl Send for CommandCleanupEvidence
impl Sync for CommandCleanupEvidence
impl Unpin for CommandCleanupEvidence
impl UnsafeUnpin for CommandCleanupEvidence
impl UnwindSafe for CommandCleanupEvidence
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