Trait winsafe::prelude::taskschd_IDailyTrigger

source ·
pub trait taskschd_IDailyTrigger: taskschd_ITrigger {
    // Provided methods
    fn get_DaysInterval(&self) -> HrResult<i16> { ... }
    fn get_RandomDelay(&self) -> HrResult<String> { ... }
    fn put_DaysInterval(&self, days: i16) -> HrResult<()> { ... }
    fn put_RandomDelay(&self, random_delay: &str) -> HrResult<()> { ... }
}
Available on crate features kernel and taskschd only.
Expand description

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

Prefer importing this trait through the prelude:

use winsafe::prelude::*;

Provided Methods§

Object Safety§

This trait is not object safe.

Implementors§