pub enum TerminalReason {
Completed,
Failed,
Killed,
Abandoned,
HostRestart,
}Expand description
Why a record reached Terminal. Set exactly once, at the transition into Terminal.
Variants§
Trait Implementations§
Source§impl Clone for TerminalReason
impl Clone for TerminalReason
Source§fn clone(&self) -> TerminalReason
fn clone(&self) -> TerminalReason
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 TerminalReason
Source§impl Debug for TerminalReason
impl Debug for TerminalReason
impl Eq for TerminalReason
Source§impl PartialEq for TerminalReason
impl PartialEq for TerminalReason
impl StructuralPartialEq for TerminalReason
Auto Trait Implementations§
impl Freeze for TerminalReason
impl RefUnwindSafe for TerminalReason
impl Send for TerminalReason
impl Sync for TerminalReason
impl Unpin for TerminalReason
impl UnsafeUnpin for TerminalReason
impl UnwindSafe for TerminalReason
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