windows::Win32::System::Ole

Trait IPersistPropertyBag_Impl

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

Required Methods§

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

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

fn Save( &self, ppropbag: Ref<'_, IPropertyBag>, 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§