Trait winsafe::prelude::taskschd_ITrigger

source ·
pub trait taskschd_ITrigger: oleaut_IDispatch {
    // Provided methods
    fn get_Enabled(&self) -> HrResult<bool> { ... }
    fn get_EndBoundary(&self) -> HrResult<String> { ... }
    fn get_ExecutionTimeLimit(&self) -> HrResult<String> { ... }
    fn get_Id(&self) -> HrResult<String> { ... }
    fn get_StartBoundary(&self) -> HrResult<String> { ... }
    fn get_Type(&self) -> HrResult<TASK_TRIGGER_TYPE2> { ... }
    fn put_Enabled(&self, enabled: bool) -> HrResult<()> { ... }
    fn put_EndBoundary(&self, end: &str) -> HrResult<()> { ... }
    fn put_ExecutionTimeLimit(&self, time_limit: &str) -> HrResult<()> { ... }
    fn put_Id(&self, id: &str) -> HrResult<()> { ... }
    fn put_StartBoundary(&self, start: &str) -> 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§