windows::Win32::UI::Shell

Trait INamedPropertyBag_Impl

pub trait INamedPropertyBag_Impl: IUnknownImpl {
    // 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<()>

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§