Type Alias exr::image::RgbChannels

source ·
pub type RgbChannels = (ChannelDescription, ChannelDescription, ChannelDescription);
Expand description

Contains information about the channels in an rgb image, in the order (red, green, blue).

Trait Implementations§

source§

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

§

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

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> ValidateResult for (A, B, C)where A: Clone + ValidateResult, B: Clone + ValidateResult, C: 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