pub enum Paint {
Age,
CumulativeAge,
Generation,
Constant,
}Expand description
What values should be used to fill the grid.
Variants§
Age
The age of the walker when it reached that point.
CumulativeAge
The cumulative age, i.e. the age of the walker plus that of all its ancestors.
Generation
The walker’s generation (older is lower).
Constant
The constant value 1.
Auto Trait Implementations§
impl Freeze for Paint
impl RefUnwindSafe for Paint
impl Send for Paint
impl Sync for Paint
impl Unpin for Paint
impl UnwindSafe for Paint
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