pub enum ColorBlend {
Overwrite,
KeepFirst,
}Variants§
Overwrite
Sobrescribe el color anterior de la celda.
KeepFirst
Mantiene el primer color que se asignó a la celda (no lo sobrescribe).
Trait Implementations§
Source§impl Clone for ColorBlend
impl Clone for ColorBlend
Source§fn clone(&self) -> ColorBlend
fn clone(&self) -> ColorBlend
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 PartialEq for ColorBlend
impl PartialEq for ColorBlend
impl Copy for ColorBlend
impl Eq for ColorBlend
impl StructuralPartialEq for ColorBlend
Auto Trait Implementations§
impl Freeze for ColorBlend
impl RefUnwindSafe for ColorBlend
impl Send for ColorBlend
impl Sync for ColorBlend
impl Unpin for ColorBlend
impl UnsafeUnpin for ColorBlend
impl UnwindSafe for ColorBlend
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