#[repr(u32)]pub enum JobState {
Pending = 3,
Held = 4,
Processing = 5,
ProcessingStopped = 6,
Canceled = 7,
Aborted = 8,
Completed = 9,
}Expand description
IPP job-state enum (RFC 8011 §5.3.7).
Variants§
Implementations§
Trait Implementations§
impl Copy for JobState
impl Eq for JobState
impl StructuralPartialEq for JobState
Auto Trait Implementations§
impl Freeze for JobState
impl RefUnwindSafe for JobState
impl Send for JobState
impl Sync for JobState
impl Unpin for JobState
impl UnsafeUnpin for JobState
impl UnwindSafe for JobState
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