pub enum PrintJobStatus {
Queued,
Printing,
Completed,
Failed,
Cancelled,
}Expand description
Status of a print job.
Variants§
Queued
Waiting in the queue.
Printing
Currently being printed.
Completed
Successfully completed.
Failed
Failed with an error.
Cancelled
Cancelled by the user.
Trait Implementations§
Source§impl Clone for PrintJobStatus
impl Clone for PrintJobStatus
Source§fn clone(&self) -> PrintJobStatus
fn clone(&self) -> PrintJobStatus
Returns a duplicate of the value. Read more
1.0.0§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PrintJobStatus
impl Debug for PrintJobStatus
Source§impl PartialEq for PrintJobStatus
impl PartialEq for PrintJobStatus
impl Copy for PrintJobStatus
impl Eq for PrintJobStatus
impl StructuralPartialEq for PrintJobStatus
Auto Trait Implementations§
impl Freeze for PrintJobStatus
impl RefUnwindSafe for PrintJobStatus
impl Send for PrintJobStatus
impl Sync for PrintJobStatus
impl Unpin for PrintJobStatus
impl UnwindSafe for PrintJobStatus
Blanket Implementations§
§impl<T> Any for Twhere
T: 'static + ?Sized,
impl<T> Any for Twhere
T: 'static + ?Sized,
§impl<T> Borrow<T> for Twhere
T: ?Sized,
impl<T> Borrow<T> for Twhere
T: ?Sized,
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§unsafe fn clone_to_uninit(&self, dest: *mut u8)
unsafe fn clone_to_uninit(&self, dest: *mut u8)
🔬This is a nightly-only experimental API. (
clone_to_uninit)