Type Alias exr::image::RgbaChannels

source ·
pub type RgbaChannels = (ChannelDescription, ChannelDescription, ChannelDescription, Option<ChannelDescription>);
Expand description

Contains information about the channels in an rgba image, in the order (red, green, blue, alpha). The alpha channel is not required. May be None if the image did not contain an alpha channel.

Trait Implementations§

source§

impl<A, B, C, D> IntoRecursive for (A, B, C, D)

§

type Recursive = Recursive<Recursive<Recursive<Recursive<NoneMore, A>, B>, C>, D>

The recursive type resulting from this tuple.
source§

fn into_recursive(self) -> Self::Recursive

Create a recursive type from this tuple.
source§

impl<A, B, C, D> ValidateResult for (A, B, C, D)where A: Clone + ValidateResult, B: Clone + ValidateResult, C: Clone + ValidateResult, D: Clone + ValidateResult,

source§

fn validate_result( &self, other: &Self, options: ValidationOptions, location: impl Fn() -> String ) -> ValidationResult

Compare self with the other. Exceptional behaviour: Read more
source§

fn assert_equals_result(&self, result: &Self)

Compare self with the other. Panics if not equal. Read more