pub enum ProcessTerminalState {
Completed,
Failed,
Cancelled,
}Variants§
Trait Implementations§
Source§impl Clone for ProcessTerminalState
impl Clone for ProcessTerminalState
Source§fn clone(&self) -> ProcessTerminalState
fn clone(&self) -> ProcessTerminalState
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 ProcessTerminalState
Source§impl Debug for ProcessTerminalState
impl Debug for ProcessTerminalState
Source§impl<'de> Deserialize<'de> for ProcessTerminalState
impl<'de> Deserialize<'de> for ProcessTerminalState
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 ProcessTerminalState
Source§impl PartialEq for ProcessTerminalState
impl PartialEq for ProcessTerminalState
Source§fn eq(&self, other: &ProcessTerminalState) -> bool
fn eq(&self, other: &ProcessTerminalState) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ProcessTerminalState
impl Serialize for ProcessTerminalState
impl StructuralPartialEq for ProcessTerminalState
Auto Trait Implementations§
impl Freeze for ProcessTerminalState
impl RefUnwindSafe for ProcessTerminalState
impl Send for ProcessTerminalState
impl Sync for ProcessTerminalState
impl Unpin for ProcessTerminalState
impl UnsafeUnpin for ProcessTerminalState
impl UnwindSafe for ProcessTerminalState
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