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)
impl<A, B, C, D> IntoRecursive for (A, B, C, D)
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,
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
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)
fn assert_equals_result(&self, result: &Self)
Compare self with the other. Panics if not equal. Read more