pub trait Colored<C> {
    fn color(&mut self, color: C) -> Self;
}
Expand description

A trait to color the components more easily

Required Methods

Adds colored to the object

Implementors