Trait colstodian::traits::ColorAlphaConversionQuery[][src]

pub trait ColorAlphaConversionQuery<SrcSpace: ColorSpace, SrcAlpha: AlphaState> {
    type DstSpace: ConvertFromRaw<SrcSpace>;
    type DstAlpha: ConvertFromAlphaRaw<SrcAlpha> + AlphaState;
}
Expand description

A “conversion query” for a ColorAlpha.

A type that implements this trait is able to be used as the type parameter for ColorAlpha::convert_to.

The types that implement this trait are:

Associated Types

Implementors