[−][src]Struct jpegxl_sys::JxlExtraChannelInfo
Information for a single extra channel.
Fields
type_: JxlExtraChannelTypeGiven type of an extra channel.
bits_per_sample: u32Total bits per sample for this channel.
exponent_bits_per_sample: u32Floating point exponent bits per channel, or 0 if they are unsigned integer.
dim_shift: u32The exponent the channel is downsampled by on each axis. TODO(lode): expand this comment to match the JPEG XL specification, specify how to upscale, how to round the size computation, and to which extra channels this field applies.
name_length: u32Length of the extra channel name in bytes, or 0 if no name. Excludes null termination character.
alpha_associated: c_intWhether alpha channel uses premultiplied alpha. Only applicable if type is JXL_CHANNEL_ALPHA.
spot_color: [f32; 4]Spot color of the current spot channel in linear RGBA. Only applicable if type is JXL_CHANNEL_SPOT_COLOR.
cfa_channel: u32Only applicable if type is JXL_CHANNEL_CFA. TODO(lode): add comment about the meaning of this field.
Trait Implementations
impl Clone for JxlExtraChannelInfo[src]
pub fn clone(&self) -> JxlExtraChannelInfo[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Copy for JxlExtraChannelInfo[src]
impl Debug for JxlExtraChannelInfo[src]
Auto Trait Implementations
impl RefUnwindSafe for JxlExtraChannelInfo[src]
impl Send for JxlExtraChannelInfo[src]
impl Sync for JxlExtraChannelInfo[src]
impl Unpin for JxlExtraChannelInfo[src]
impl UnwindSafe for JxlExtraChannelInfo[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,