#[repr(C)]
pub struct avifDecoder {
Show 25 fields pub codecChoice: avifCodecChoice, pub maxThreads: c_int, pub requestedSource: avifDecoderSource, pub allowProgressive: avifBool, pub allowIncremental: avifBool, pub ignoreExif: avifBool, pub ignoreXMP: avifBool, pub imageSizeLimit: u32, pub imageDimensionLimit: u32, pub imageCountLimit: u32, pub strictFlags: avifStrictFlags, pub image: *mut avifImage, pub imageIndex: c_int, pub imageCount: c_int, pub progressiveState: avifProgressiveState, pub imageTiming: avifImageTiming, pub timescale: u64, pub duration: f64, pub durationInTimescales: u64, pub repetitionCount: c_int, pub alphaPresent: avifBool, pub ioStats: avifIOStats, pub diag: avifDiagnostics, pub io: *mut avifIO, pub data: *mut avifDecoderData,
}

Fields§

§codecChoice: avifCodecChoice§maxThreads: c_int§requestedSource: avifDecoderSource§allowProgressive: avifBool§allowIncremental: avifBool§ignoreExif: avifBool§ignoreXMP: avifBool§imageSizeLimit: u32§imageDimensionLimit: u32§imageCountLimit: u32§strictFlags: avifStrictFlags§image: *mut avifImage§imageIndex: c_int§imageCount: c_int§progressiveState: avifProgressiveState§imageTiming: avifImageTiming§timescale: u64§duration: f64§durationInTimescales: u64§repetitionCount: c_int§alphaPresent: avifBool§ioStats: avifIOStats§diag: avifDiagnostics§io: *mut avifIO§data: *mut avifDecoderData

Trait Implementations§

source§

impl Clone for avifDecoder

source§

fn clone(&self) -> avifDecoder

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for avifDecoder

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for avifDecoder

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl Copy for avifDecoder

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.