pub trait IActionCollection_Impl: Sized + 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<()>

Object Safety§

This trait is not object safe.

Implementors§