pub trait IAction_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn Id(&self, pid: *mut BSTR) -> Result<()>;
    fn SetId(&self, id: &BSTR) -> Result<()>;
    fn Type(&self, ptype: *mut TASK_ACTION_TYPE) -> Result<()>;
}

Required Methods§

fn Id(&self, pid: *mut BSTR) -> Result<()>

fn SetId(&self, id: &BSTR) -> Result<()>

fn Type(&self, ptype: *mut TASK_ACTION_TYPE) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§