#[repr(u32)]pub enum IppPrinterState {
Idle = 3,
Processing = 4,
Stopped = 5,
}Expand description
IPP printer-state enum (RFC 8011 §5.4.11).
Variants§
Trait Implementations§
Source§impl Clone for IppPrinterState
impl Clone for IppPrinterState
Source§fn clone(&self) -> IppPrinterState
fn clone(&self) -> IppPrinterState
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 IppPrinterState
impl Debug for IppPrinterState
Source§impl PartialEq for IppPrinterState
impl PartialEq for IppPrinterState
Source§fn eq(&self, other: &IppPrinterState) -> bool
fn eq(&self, other: &IppPrinterState) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for IppPrinterState
impl Eq for IppPrinterState
impl StructuralPartialEq for IppPrinterState
Auto Trait Implementations§
impl Freeze for IppPrinterState
impl RefUnwindSafe for IppPrinterState
impl Send for IppPrinterState
impl Sync for IppPrinterState
impl Unpin for IppPrinterState
impl UnsafeUnpin for IppPrinterState
impl UnwindSafe for IppPrinterState
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