pub trait ITaskNamedValuePair_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn Name(&self, pname: *mut BSTR) -> Result<()>;
    fn SetName(&self, name: &BSTR) -> Result<()>;
    fn Value(&self, pvalue: *mut BSTR) -> Result<()>;
    fn SetValue(&self, value: &BSTR) -> Result<()>;
}

Required Methods§

fn Name(&self, pname: *mut BSTR) -> Result<()>

fn SetName(&self, name: &BSTR) -> Result<()>

fn Value(&self, pvalue: *mut BSTR) -> Result<()>

fn SetValue(&self, value: &BSTR) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§