pub enum V1JobState {
Printing,
Paused,
Finished,
Stopped,
Error,
}Expand description
The job status reported by the V1 API.
Variants§
Trait Implementations§
Source§impl Clone for V1JobState
impl Clone for V1JobState
Source§fn clone(&self) -> V1JobState
fn clone(&self) -> V1JobState
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 V1JobState
impl Debug for V1JobState
Source§impl<'de> Deserialize<'de> for V1JobState
impl<'de> Deserialize<'de> for V1JobState
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 V1JobState
impl PartialEq for V1JobState
impl StructuralPartialEq for V1JobState
Auto Trait Implementations§
impl Freeze for V1JobState
impl RefUnwindSafe for V1JobState
impl Send for V1JobState
impl Sync for V1JobState
impl Unpin for V1JobState
impl UnsafeUnpin for V1JobState
impl UnwindSafe for V1JobState
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