pub trait IWMMediaProps_Impl: Sized {
    // Required methods
    fn GetType(&self) -> Result<GUID>;
    fn GetMediaType(
        &self,
        ptype: *mut WM_MEDIA_TYPE,
        pcbtype: *mut u32
    ) -> Result<()>;
    fn SetMediaType(&self, ptype: *const WM_MEDIA_TYPE) -> Result<()>;
}

Required Methods§

fn GetType(&self) -> Result<GUID>

fn GetMediaType( &self, ptype: *mut WM_MEDIA_TYPE, pcbtype: *mut u32 ) -> Result<()>

fn SetMediaType(&self, ptype: *const WM_MEDIA_TYPE) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§