pub trait IPrintPipelinePropertyBag_Impl: Sized {
    // Required methods
    fn AddProperty(&self, pszname: &PCWSTR, pvar: *const VARIANT) -> Result<()>;
    fn GetProperty(&self, pszname: &PCWSTR) -> Result<VARIANT>;
    fn DeleteProperty(&self, pszname: &PCWSTR) -> BOOL;
}

Required Methods§

fn AddProperty(&self, pszname: &PCWSTR, pvar: *const VARIANT) -> Result<()>

fn GetProperty(&self, pszname: &PCWSTR) -> Result<VARIANT>

fn DeleteProperty(&self, pszname: &PCWSTR) -> BOOL

Object Safety§

This trait is not object safe.

Implementors§