Trait palette::Limited [] [src]

pub trait Limited {
    fn is_valid(&self) -> bool;
fn clamp(&self) -> Self;
fn clamp_self(&mut self); }

A trait for clamping and checking if colors are within their ranges.

Required Methods

Check if the color's components are within the expected ranges.

Return a new color where the components has been clamped to the nearest valid values.

Clamp the color's components to the nearest valid values.

Implementors