pub enum PrintQuality {
HighQualityLowSpeed = 0,
MediumQualityMediumSpeed = 1,
LowQualityHighSpeed = 2,
}Expand description
Valid parameter values to the function SPQR.
Variants§
HighQualityLowSpeed = 0
Highest available print quality, low print speed
MediumQualityMediumSpeed = 1
Medium print quality, medium print speed.
LowQualityHighSpeed = 2
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 (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 PrintQuality
Source§impl Debug for PrintQuality
impl Debug for PrintQuality
Source§impl Default for PrintQuality
impl Default for PrintQuality
Source§fn default() -> PrintQuality
fn default() -> PrintQuality
Returns the “default value” for a type. Read more
impl Eq for PrintQuality
Source§impl FromStr for PrintQuality
impl FromStr for PrintQuality
Source§impl PartialEq for PrintQuality
impl PartialEq for PrintQuality
Source§fn eq(&self, other: &PrintQuality) -> bool
fn eq(&self, other: &PrintQuality) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq 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 UnsafeUnpin 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