windows::Win32::Media::DirectShow

Trait IPersistMediaPropertyBag_Impl

pub trait IPersistMediaPropertyBag_Impl: IPersist_Impl {
    // Required methods
    fn InitNew(&self) -> Result<()>;
    fn Load(
        &self,
        ppropbag: Ref<'_, IMediaPropertyBag>,
        perrorlog: Ref<'_, IErrorLog>,
    ) -> Result<()>;
    fn Save(
        &self,
        ppropbag: Ref<'_, IMediaPropertyBag>,
        fcleardirty: BOOL,
        fsaveallproperties: BOOL,
    ) -> Result<()>;
}

Required Methods§

fn InitNew(&self) -> Result<()>

fn Load( &self, ppropbag: Ref<'_, IMediaPropertyBag>, perrorlog: Ref<'_, IErrorLog>, ) -> Result<()>

fn Save( &self, ppropbag: Ref<'_, IMediaPropertyBag>, fcleardirty: BOOL, fsaveallproperties: BOOL, ) -> 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§