pub trait ToRgba {
    type Standard: TransferFunction;

    fn to_rgba<T: Channel>(&self) -> Rgba<T, Self::Standard>;
}

Required Associated Types

Required Methods

Implementors