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 copy 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 Default for PrintQuality
impl Default for PrintQuality
source§fn default() -> PrintQuality
fn default() -> PrintQuality
Returns the “default value” for a type. Read more
source§impl PartialEq for PrintQuality
impl PartialEq for PrintQuality
source§fn eq(&self, other: &PrintQuality) -> bool
fn eq(&self, other: &PrintQuality) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for PrintQuality
impl Eq for PrintQuality
impl StructuralEq for PrintQuality
impl StructuralPartialEq for PrintQuality
Auto Trait Implementations§
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