Trait 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§

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.

Implementors§