Trait winsafe::prelude::taskschd_ITaskDefinition

source ·
pub trait taskschd_ITaskDefinition: oleaut_IDispatch {
    // Provided methods
    fn get_Actions(&self) -> HrResult<IActionCollection> { ... }
    fn get_Data(&self) -> HrResult<String> { ... }
    fn get_RegistrationInfo(&self) -> HrResult<IRegistrationInfo> { ... }
    fn get_Triggers(&self) -> HrResult<ITriggerCollection> { ... }
    fn get_XmlText(&self) -> HrResult<String> { ... }
    fn put_Data(&self, data: &str) -> HrResult<()> { ... }
    fn put_XmlText(&self, xml: &str) -> HrResult<()> { ... }
}
Available on crate features kernel and taskschd only.
Expand description

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

Prefer importing this trait through the prelude:

use winsafe::prelude::*;

Provided Methods§

Object Safety§

This trait is not object safe.

Implementors§