pub enum PrintQuality {
Highest,
Medium,
Draft,
}
Variants§
Highest
Highest available print quality, low print speed.
Medium
Medium print quality, medium print speed.
Draft
Draft print quality, highest available print speed.
Trait Implementations§
Source§impl Clone for PrintQuality
impl Clone for PrintQuality
Source§fn clone(&self) -> PrintQuality
fn clone(&self) -> PrintQuality
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for PrintQuality
impl Debug for PrintQuality
Source§impl Display for PrintQuality
impl Display for PrintQuality
impl Copy for PrintQuality
Auto Trait Implementations§
impl Freeze for PrintQuality
impl RefUnwindSafe for PrintQuality
impl Send for PrintQuality
impl Sync for PrintQuality
impl Unpin for PrintQuality
impl UnwindSafe for PrintQuality
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