pub struct ExactColorization<O> { /* private fields */ }
Expand description
A colorization of a target Object
.
Can be created by Colorization::exact
.
Trait Implementations§
Source§impl<O: Clone> Clone for ExactColorization<O>
impl<O: Clone> Clone for ExactColorization<O>
Source§fn clone(&self) -> ExactColorization<O>
fn clone(&self) -> ExactColorization<O>
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<O: Debug> Debug for ExactColorization<O>
impl<O: Debug> Debug for ExactColorization<O>
Source§impl<R, D, O> TableOption<R, ColoredConfig, D> for ExactColorization<O>where
O: Object<R>,
impl<R, D, O> TableOption<R, ColoredConfig, D> for ExactColorization<O>where
O: Object<R>,
Source§fn change(self, records: &mut R, cfg: &mut ColoredConfig, _: &mut D)
fn change(self, records: &mut R, cfg: &mut ColoredConfig, _: &mut D)
The function modificaties of records and a grid configuration.
Source§fn hint_change(&self) -> Option<Entity>
fn hint_change(&self) -> Option<Entity>
A hint whether an
TableOption
is going to change table layout. Read moreAuto Trait Implementations§
impl<O> Freeze for ExactColorization<O>where
O: Freeze,
impl<O> RefUnwindSafe for ExactColorization<O>where
O: RefUnwindSafe,
impl<O> Send for ExactColorization<O>where
O: Send,
impl<O> Sync for ExactColorization<O>where
O: Sync,
impl<O> Unpin for ExactColorization<O>where
O: Unpin,
impl<O> UnwindSafe for ExactColorization<O>where
O: UnwindSafe,
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