pub enum JobStatusOutput {
PENDING,
RUNNING,
DONE,
CANCELLED,
ERROR,
Other(String),
}Variants§
Trait Implementations§
Source§impl Clone for JobStatusOutput
impl Clone for JobStatusOutput
Source§fn clone(&self) -> JobStatusOutput
fn clone(&self) -> JobStatusOutput
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 JobStatusOutput
impl Debug for JobStatusOutput
Source§impl<'de> Deserialize<'de> for JobStatusOutput
impl<'de> Deserialize<'de> for JobStatusOutput
Source§fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for JobStatusOutput
impl RefUnwindSafe for JobStatusOutput
impl Send for JobStatusOutput
impl Sync for JobStatusOutput
impl Unpin for JobStatusOutput
impl UnsafeUnpin for JobStatusOutput
impl UnwindSafe for JobStatusOutput
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