[][src]Struct winapi::um::wincodec::IWICBitmapFrameDecode

#[repr(C)]
pub struct IWICBitmapFrameDecode {
    pub lpVtbl: *const IWICBitmapFrameDecodeVtbl,
}

Fields

lpVtbl: *const IWICBitmapFrameDecodeVtbl

Methods

impl IWICBitmapFrameDecode[src]

pub unsafe fn GetMetadataQueryReader(
    &self,
    ppIMetadataQueryReader: *mut *mut IWICMetadataQueryReader
) -> HRESULT
[src]

pub unsafe fn GetColorContexts(
    &self,
    cCount: UINT,
    ppIColorContexts: *mut *mut IWICColorContext,
    pcActualCount: *mut UINT
) -> HRESULT
[src]

pub unsafe fn GetThumbnail(
    &self,
    ppIThumbnail: *mut *mut IWICBitmapSource
) -> HRESULT
[src]

Methods from Deref<Target = IWICBitmapSource>

pub unsafe fn GetSize(
    &self,
    puiWidth: *mut UINT,
    puiHeight: *mut UINT
) -> HRESULT
[src]

pub unsafe fn GetPixelFormat(
    &self,
    pPixelFormat: *mut WICPixelFormatGUID
) -> HRESULT
[src]

pub unsafe fn GetResolution(
    &self,
    pDpiX: *mut c_double,
    pDpiY: *mut c_double
) -> HRESULT
[src]

pub unsafe fn CopyPalette(&self, pIPalette: *mut IWICPalette) -> HRESULT[src]

pub unsafe fn CopyPixels(
    &self,
    prc: *const WICRect,
    cbStride: UINT,
    cbBufferSize: UINT,
    pbBuffer: *mut BYTE
) -> HRESULT
[src]

Trait Implementations

impl Interface for IWICBitmapFrameDecode[src]

impl Deref for IWICBitmapFrameDecode[src]

type Target = IWICBitmapSource

The resulting type after dereferencing.

Auto Trait Implementations

Blanket Implementations

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> Into<U> for T where
    U: From<T>, 
[src]

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

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.

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

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

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