Trait IActionCollection_Impl
pub trait IActionCollection_Impl: IDispatch_Impl {
// Required methods
fn Count(&self, pcount: *mut i32) -> Result<()>;
fn get_Item(&self, index: i32) -> Result<IAction>;
fn _NewEnum(&self) -> Result<IUnknown>;
fn XmlText(&self, ptext: *mut BSTR) -> Result<()>;
fn SetXmlText(&self, text: &BSTR) -> Result<()>;
fn Create(&self, type: TASK_ACTION_TYPE) -> Result<IAction>;
fn Remove(&self, index: &VARIANT) -> Result<()>;
fn Clear(&self) -> Result<()>;
fn Context(&self, pcontext: *mut BSTR) -> Result<()>;
fn SetContext(&self, context: &BSTR) -> Result<()>;
}
Required Methods§
fn Count(&self, pcount: *mut i32) -> Result<()>
fn get_Item(&self, index: i32) -> Result<IAction>
fn _NewEnum(&self) -> Result<IUnknown>
fn XmlText(&self, ptext: *mut BSTR) -> Result<()>
fn SetXmlText(&self, text: &BSTR) -> Result<()>
fn Create(&self, type: TASK_ACTION_TYPE) -> Result<IAction>
fn Remove(&self, index: &VARIANT) -> Result<()>
fn Clear(&self) -> Result<()>
fn Context(&self, pcontext: *mut BSTR) -> Result<()>
fn SetContext(&self, context: &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.