Grayscale

Trait Grayscale 

Source
pub trait Grayscale: Saturate {
    // Provided method
    fn grayscale(self) -> Self { ... }
}

Provided Methods§

Source

fn grayscale(self) -> Self

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.

Implementors§

Source§

impl<C> Grayscale for C
where C: Saturate,