#[repr(u8)]pub enum ExtraChannelType {
Show 16 variants
Alpha = 0,
Depth = 1,
SpotColor = 2,
SelectionMask = 3,
Black = 4,
Cfa = 5,
Thermal = 6,
Reserved0 = 7,
Reserved1 = 8,
Reserved2 = 9,
Reserved3 = 10,
Reserved4 = 11,
Reserved5 = 12,
Reserved6 = 13,
Reserved7 = 14,
Optional = 15,
}Expand description
Type of extra channel.
Variants§
Alpha = 0
Alpha (transparency) channel.
Depth = 1
Depth map.
SpotColor = 2
Spot color.
SelectionMask = 3
Selection mask.
Black = 4
Black channel (for CMYK).
Cfa = 5
CFA (Color Filter Array) channel.
Thermal = 6
Thermal channel.
Reserved0 = 7
Reserved for future use.
Reserved1 = 8
Reserved2 = 9
Reserved3 = 10
Reserved4 = 11
Reserved5 = 12
Reserved6 = 13
Reserved7 = 14
Optional = 15
Optional extra channel.
Trait Implementations§
Source§impl Clone for ExtraChannelType
impl Clone for ExtraChannelType
Source§fn clone(&self) -> ExtraChannelType
fn clone(&self) -> ExtraChannelType
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ExtraChannelType
impl Debug for ExtraChannelType
Source§impl Default for ExtraChannelType
impl Default for ExtraChannelType
Source§fn default() -> ExtraChannelType
fn default() -> ExtraChannelType
Returns the “default value” for a type. Read more
Source§impl PartialEq for ExtraChannelType
impl PartialEq for ExtraChannelType
impl Copy for ExtraChannelType
impl Eq for ExtraChannelType
impl StructuralPartialEq for ExtraChannelType
Auto Trait Implementations§
impl Freeze for ExtraChannelType
impl RefUnwindSafe for ExtraChannelType
impl Send for ExtraChannelType
impl Sync for ExtraChannelType
impl Unpin for ExtraChannelType
impl UnsafeUnpin for ExtraChannelType
impl UnwindSafe for ExtraChannelType
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more