Trait winsafe::prelude::taskschd_ITriggerCollection

source ·
pub trait taskschd_ITriggerCollection: oleaut_IDispatch {
    // Provided methods
    fn Clear(&self) -> HrResult<()> { ... }
    fn Create(&self, trigger_type: TASK_TRIGGER_TYPE2) -> HrResult<ITrigger> { ... }
    fn get_Count(&self) -> HrResult<i32> { ... }
    fn get_Item(&self, index: i32) -> HrResult<ITrigger> { ... }
    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 ITriggerCollection.

Prefer importing this trait through the prelude:

use winsafe::prelude::*;

Provided Methods§

Object Safety§

This trait is not object safe.

Implementors§