#[repr(u32)]pub enum ColorVariant {
Black = 0,
}
Expand description
Represents a named Color variant.
Variants§
Black = 0
Trait Implementations§
Source§impl Clone for ColorVariant
impl Clone for ColorVariant
Source§fn clone(&self) -> ColorVariant
fn clone(&self) -> ColorVariant
Returns a duplicate 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 ColorVariant
impl Debug for ColorVariant
Source§impl Default for ColorVariant
impl Default for ColorVariant
Source§fn default() -> ColorVariant
fn default() -> ColorVariant
Returns the “default value” for a type. Read more
Source§impl PartialEq for ColorVariant
impl PartialEq for ColorVariant
impl Copy for ColorVariant
impl StructuralPartialEq for ColorVariant
Auto Trait Implementations§
impl Freeze for ColorVariant
impl RefUnwindSafe for ColorVariant
impl Send for ColorVariant
impl Sync for ColorVariant
impl Unpin for ColorVariant
impl UnwindSafe for ColorVariant
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