[][src]Struct skyline::nn::image::JpegDecoder

#[repr(C)]pub struct JpegDecoder {
    pub vtable_: *const JpegDecoder__bindgen_vtable,
    pub mProcessStage: u32,
    pub mData: *mut c_void,
    pub mSize: i64,
    pub _18: i32,
    pub mFormat: u32,
    pub mImgDimensions: Dimension,
    pub _28: i64,
}

Fields

vtable_: *const JpegDecoder__bindgen_vtablemProcessStage: u32mData: *mut c_voidmSize: i64_18: i32mFormat: u32mImgDimensions: Dimension_28: i64

Implementations

impl JpegDecoder[src]

pub unsafe fn SetImageData(&mut self, source: *const c_void, size: u64)[src]

pub unsafe fn Analyze(&mut self) -> i32[src]

pub unsafe fn GetAnalyzedDimension(&self) -> Dimension[src]

pub unsafe fn GetAnalyzedWorkBufferSize(&self) -> i64[src]

pub unsafe fn Decode(
    &mut self,
    out: *mut c_void,
    arg1: i64,
    alignment: i32,
    arg2: *mut c_void,
    arg3: i64
) -> i32
[src]

pub unsafe fn new() -> JpegDecoder[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.