windows::Win32::System::WinRT::Graphics::Imaging

Trait ISoftwareBitmapNativeFactory_Impl

pub trait ISoftwareBitmapNativeFactory_Impl: IUnknownImpl {
    // Required methods
    fn CreateFromWICBitmap(
        &self,
        data: Ref<'_, IWICBitmap>,
        forcereadonly: BOOL,
        riid: *const GUID,
        ppv: *mut *mut c_void,
    ) -> Result<()>;
    fn CreateFromMF2DBuffer2(
        &self,
        data: Ref<'_, IMF2DBuffer2>,
        subtype: *const GUID,
        width: u32,
        height: u32,
        forcereadonly: BOOL,
        mindisplayaperture: *const MFVideoArea,
        riid: *const GUID,
        ppv: *mut *mut c_void,
    ) -> Result<()>;
}

Required Methods§

fn CreateFromWICBitmap( &self, data: Ref<'_, IWICBitmap>, forcereadonly: BOOL, riid: *const GUID, ppv: *mut *mut c_void, ) -> Result<()>

fn CreateFromMF2DBuffer2( &self, data: Ref<'_, IMF2DBuffer2>, subtype: *const GUID, width: u32, height: u32, forcereadonly: BOOL, mindisplayaperture: *const MFVideoArea, riid: *const GUID, ppv: *mut *mut c_void, ) -> Result<()>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§