[][src]Trait colours::HasntAlpha

pub trait HasntAlpha: IsColor {
    type Alphaful: HasAlpha;
    fn with_alpha(self, alpha: Self::Channel) -> Self::Alphaful;
}

Associated Types

Loading content...

Required methods

fn with_alpha(self, alpha: Self::Channel) -> Self::Alphaful

Loading content...

Implementors

impl<T: IsColorChannel> HasntAlpha for Hsl<T>[src]

type Alphaful = Hsla<T>

impl<T: IsColorChannel> HasntAlpha for Hsv<T>[src]

type Alphaful = Hsva<T>

impl<T: IsColorChannel> HasntAlpha for Rgb<T>[src]

type Alphaful = Rgba<T>

Loading content...