pub enum PrintQuality {
HighQualityLowSpeed,
MediumQualityMediumSpeed,
LowQualityHighSpeed,
}
Expand description
Valid parameter values to the function SPQR
.
Variants§
HighQualityLowSpeed
Highest available print quality, low print speed
MediumQualityMediumSpeed
Medium print quality, medium print speed.
LowQualityHighSpeed
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<PrintQuality> for PrintQuality
impl PartialEq<PrintQuality> 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 ==
.