Trait winsafe::prelude::taskschd_IActionCollection

source ·
pub trait taskschd_IActionCollection: oleaut_IDispatch {
    // Provided methods
    fn Clear(&self) -> HrResult<()> { ... }
    fn Create(&self, action_type: TASK_ACTION_TYPE) -> HrResult<IAction> { ... }
    fn get_Context(&self) -> HrResult<String> { ... }
    fn get_Count(&self) -> HrResult<i32> { ... }
    fn get_Item(&self, index: i32) -> HrResult<IAction> { ... }
    fn get_XmlText(&self) -> HrResult<String> { ... }
    fn put_Context(&self, context: &str) -> HrResult<()> { ... }
    fn put_XmlText(&self, text: &str) -> HrResult<()> { ... }
    fn Remove(&self, index: i32) -> HrResult<()> { ... }
}
Available on crate features kernel and taskschd only.
Expand description

This trait is enabled with the taskschd feature, and provides methods for IActionCollection.

Prefer importing this trait through the prelude:

use winsafe::prelude::*;

Provided Methods§

Object Safety§

This trait is not object safe.

Implementors§