pub enum PredefinedPageOutputColor {
Color,
Grayscale,
Monochrome,
}Expand description
Represents a predefined page output color.
Variants§
Color
Specifies the output should be in color.
Grayscale
Specifies the output should be in grayscale.
Monochrome
Specifies the output should be in monochrome (Black).
Trait Implementations§
Source§impl Clone for PredefinedPageOutputColor
impl Clone for PredefinedPageOutputColor
Source§fn clone(&self) -> PredefinedPageOutputColor
fn clone(&self) -> PredefinedPageOutputColor
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 moreimpl Copy for PredefinedPageOutputColor
Source§impl Debug for PredefinedPageOutputColor
impl Debug for PredefinedPageOutputColor
impl Eq for PredefinedPageOutputColor
Source§impl FromStr for PredefinedPageOutputColor
impl FromStr for PredefinedPageOutputColor
Source§impl Hash for PredefinedPageOutputColor
impl Hash for PredefinedPageOutputColor
impl StructuralPartialEq for PredefinedPageOutputColor
Auto Trait Implementations§
impl Freeze for PredefinedPageOutputColor
impl RefUnwindSafe for PredefinedPageOutputColor
impl Send for PredefinedPageOutputColor
impl Sync for PredefinedPageOutputColor
impl Unpin for PredefinedPageOutputColor
impl UnsafeUnpin for PredefinedPageOutputColor
impl UnwindSafe for PredefinedPageOutputColor
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