pub enum RunEndReason {
ManualDisarm,
Shutdown,
AutoSealOnLimitsHit,
}Expand description
Run lifecycle end reason recorded in artifact metadata.
Variants§
ManualDisarm
Run ended because capture was disarmed manually.
Shutdown
Run ended because process/controller shutdown finalized capture.
AutoSealOnLimitsHit
Run auto-sealed after hitting capture limits.
Trait Implementations§
Source§impl Clone for RunEndReason
impl Clone for RunEndReason
Source§fn clone(&self) -> RunEndReason
fn clone(&self) -> RunEndReason
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 RunEndReason
impl Debug for RunEndReason
Source§impl<'de> Deserialize<'de> for RunEndReason
impl<'de> Deserialize<'de> for RunEndReason
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
Source§impl PartialEq for RunEndReason
impl PartialEq for RunEndReason
Source§fn eq(&self, other: &RunEndReason) -> bool
fn eq(&self, other: &RunEndReason) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for RunEndReason
impl Serialize for RunEndReason
impl Copy for RunEndReason
impl Eq for RunEndReason
impl StructuralPartialEq for RunEndReason
Auto Trait Implementations§
impl Freeze for RunEndReason
impl RefUnwindSafe for RunEndReason
impl Send for RunEndReason
impl Sync for RunEndReason
impl Unpin for RunEndReason
impl UnsafeUnpin for RunEndReason
impl UnwindSafe for RunEndReason
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