pub trait Palette {
const COLORS: &'static [(u8, u8, u8)];
// Provided method
fn pick(idx: usize) -> PaletteColor<Self>
where Self: Sized { ... }
}
Expand description
Represents a color palette
Required Associated Constants§
Provided Methods§
Sourcefn pick(idx: usize) -> PaletteColor<Self>where
Self: Sized,
fn pick(idx: usize) -> PaletteColor<Self>where
Self: Sized,
Returns a color from the palette
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.