pub enum PrintStatus {
NotSet,
NeedToPrint,
PrintComplete,
}Expand description
PrintStatus Enum
Status of whether a document needs to be printed or not
Variants§
Trait Implementations§
Source§impl Clone for PrintStatus
impl Clone for PrintStatus
Source§fn clone(&self) -> PrintStatus
fn clone(&self) -> PrintStatus
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 PrintStatus
impl Debug for PrintStatus
Source§impl Default for PrintStatus
impl Default for PrintStatus
Source§fn default() -> PrintStatus
fn default() -> PrintStatus
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PrintStatus
impl<'de> Deserialize<'de> for PrintStatus
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 PrintStatus
impl PartialEq for PrintStatus
Source§impl Serialize for PrintStatus
impl Serialize for PrintStatus
impl StructuralPartialEq for PrintStatus
Auto Trait Implementations§
impl Freeze for PrintStatus
impl RefUnwindSafe for PrintStatus
impl Send for PrintStatus
impl Sync for PrintStatus
impl Unpin for PrintStatus
impl UnwindSafe for PrintStatus
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