Trait windows::Win32::Graphics::Imaging::IWICPersistStream_Impl

pub trait IWICPersistStream_Impl: Sized + IPersistStream_Impl {
    // Required methods
    fn LoadEx(
        &self,
        pistream: Option<&IStream>,
        pguidpreferredvendor: *const GUID,
        dwpersistoptions: u32,
    ) -> Result<()>;
    fn SaveEx(
        &self,
        pistream: Option<&IStream>,
        dwpersistoptions: u32,
        fcleardirty: BOOL,
    ) -> Result<()>;
}

Required Methods§

fn LoadEx( &self, pistream: Option<&IStream>, pguidpreferredvendor: *const GUID, dwpersistoptions: u32, ) -> Result<()>

fn SaveEx( &self, pistream: Option<&IStream>, dwpersistoptions: u32, fcleardirty: BOOL, ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§