pub enum PrintQuality {
Low,
Normal,
High,
Draft,
// some variants omitted
}
Variants§
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 Debug for PrintQuality
impl Debug for PrintQuality
Source§impl Display for PrintQuality
impl Display for PrintQuality
Source§impl<'a> FromValue<'a> for PrintQuality
impl<'a> FromValue<'a> for PrintQuality
unsafe fn from_value(value: &Value) -> Self
Source§impl<'a> FromValueOptional<'a> for PrintQuality
impl<'a> FromValueOptional<'a> for PrintQuality
unsafe fn from_value_optional(value: &Value) -> Option<Self>
Source§impl Hash for PrintQuality
impl Hash for PrintQuality
Source§impl Ord for PrintQuality
impl Ord for PrintQuality
Source§fn cmp(&self, other: &PrintQuality) -> Ordering
fn cmp(&self, other: &PrintQuality) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for PrintQuality
impl PartialEq for PrintQuality
Source§impl PartialOrd for PrintQuality
impl PartialOrd for PrintQuality
Source§impl StaticType for PrintQuality
impl StaticType for PrintQuality
Source§fn static_type() -> Type
fn static_type() -> Type
Returns the type identifier of
Self
.impl Copy for PrintQuality
impl Eq for PrintQuality
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 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> ToSendValue for T
impl<T> ToSendValue for T
Source§fn to_send_value(&self) -> SendValue
fn to_send_value(&self) -> SendValue
Returns a
SendValue
clone of self
.