[][src]Struct kagamijxl::DecodeResult

pub struct DecodeResult {
    pub basic_info: JxlBasicInfo,
    pub color_profile: Vec<u8>,
    pub preview: Vec<u8>,
    pub frames: Vec<Frame>,
}

Fields

basic_info: JxlBasicInfocolor_profile: Vec<u8>

Can be empty unless need_color_profile is specified

preview: Vec<u8>

Can be empty unless need_optional_preview is specified

frames: Vec<Frame>

Can be empty if neither of need_frame_header, need_dc_frame, nor need_frame is specified

Trait Implementations

impl Default for DecodeResult[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.