pub enum IpcJobState {
Pending,
Running,
Completed,
Failed,
Cancelled,
}Expand description
Job state in the scheduler (IPC version).
Variants§
Trait Implementations§
Source§impl Clone for IpcJobState
impl Clone for IpcJobState
Source§fn clone(&self) -> IpcJobState
fn clone(&self) -> IpcJobState
Returns a duplicate of the value. Read more
1.0.0 · 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 IpcJobState
impl Debug for IpcJobState
Source§impl<'de> Deserialize<'de> for IpcJobState
impl<'de> Deserialize<'de> for IpcJobState
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 Display for IpcJobState
impl Display for IpcJobState
Source§impl PartialEq for IpcJobState
impl PartialEq for IpcJobState
Source§impl Serialize for IpcJobState
impl Serialize for IpcJobState
impl Copy for IpcJobState
impl Eq for IpcJobState
impl StructuralPartialEq for IpcJobState
Auto Trait Implementations§
impl Freeze for IpcJobState
impl RefUnwindSafe for IpcJobState
impl Send for IpcJobState
impl Sync for IpcJobState
impl Unpin for IpcJobState
impl UnsafeUnpin for IpcJobState
impl UnwindSafe for IpcJobState
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