Trait rasterize::Color [−][src]
pub trait Color {
fn blend_over(&self, other: &Self) -> Self;
fn with_alpha(&self, alpha: Scalar) -> Self;
fn to_rgba(&self) -> [u8; 4];
fn to_rgb(&self) -> [u8; 3]
where
Self: Sized,
{ ... }
}