pub enum PaintFallback {
    None,
    CurrentColor,
    Color(Color),
}Variants§
Trait Implementations§
Source§impl Clone for PaintFallback
 
impl Clone for PaintFallback
Source§fn clone(&self) -> PaintFallback
 
fn clone(&self) -> PaintFallback
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 PaintFallback
 
impl Debug for PaintFallback
Source§impl PartialEq for PaintFallback
 
impl PartialEq for PaintFallback
impl Copy for PaintFallback
impl Eq for PaintFallback
impl StructuralPartialEq for PaintFallback
Auto Trait Implementations§
impl Freeze for PaintFallback
impl RefUnwindSafe for PaintFallback
impl Send for PaintFallback
impl Sync for PaintFallback
impl Unpin for PaintFallback
impl UnwindSafe for PaintFallback
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