pub enum PixelValueWithAuto {
None,
Initial,
Inherit,
Auto,
Exact(PixelValue),
}
Variants§
Trait Implementations§
Source§impl Clone for PixelValueWithAuto
impl Clone for PixelValueWithAuto
Source§fn clone(&self) -> PixelValueWithAuto
fn clone(&self) -> PixelValueWithAuto
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 PixelValueWithAuto
impl Debug for PixelValueWithAuto
Source§impl Hash for PixelValueWithAuto
impl Hash for PixelValueWithAuto
Source§impl Ord for PixelValueWithAuto
impl Ord for PixelValueWithAuto
Source§fn cmp(&self, other: &PixelValueWithAuto) -> Ordering
fn cmp(&self, other: &PixelValueWithAuto) -> 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 PixelValueWithAuto
impl PartialEq for PixelValueWithAuto
Source§impl PartialOrd for PixelValueWithAuto
impl PartialOrd for PixelValueWithAuto
impl Copy for PixelValueWithAuto
impl Eq for PixelValueWithAuto
impl StructuralPartialEq for PixelValueWithAuto
Auto Trait Implementations§
impl Freeze for PixelValueWithAuto
impl RefUnwindSafe for PixelValueWithAuto
impl Send for PixelValueWithAuto
impl Sync for PixelValueWithAuto
impl Unpin for PixelValueWithAuto
impl UnwindSafe for PixelValueWithAuto
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