pub trait INamedPropertyBag_Impl: Sized {
    // Required methods
    fn ReadPropertyNPB(
        &self,
        pszbagname: &PCWSTR,
        pszpropname: &PCWSTR,
        pvar: *mut PROPVARIANT
    ) -> Result<()>;
    fn WritePropertyNPB(
        &self,
        pszbagname: &PCWSTR,
        pszpropname: &PCWSTR,
        pvar: *const PROPVARIANT
    ) -> Result<()>;
    fn RemovePropertyNPB(
        &self,
        pszbagname: &PCWSTR,
        pszpropname: &PCWSTR
    ) -> Result<()>;
}

Required Methods§

fn ReadPropertyNPB( &self, pszbagname: &PCWSTR, pszpropname: &PCWSTR, pvar: *mut PROPVARIANT ) -> Result<()>

fn WritePropertyNPB( &self, pszbagname: &PCWSTR, pszpropname: &PCWSTR, pvar: *const PROPVARIANT ) -> Result<()>

fn RemovePropertyNPB( &self, pszbagname: &PCWSTR, pszpropname: &PCWSTR ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§