Trait ITaskNamedValuePair_Impl
pub trait ITaskNamedValuePair_Impl: 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<()>
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.