Trait winsafe::prelude::taskschd_IExecAction

source ·
pub trait taskschd_IExecAction: taskschd_IAction {
    // Provided methods
    fn get_Arguments(&self) -> HrResult<String> { ... }
    fn get_Path(&self) -> HrResult<String> { ... }
    fn get_WorkingDirectory(&self) -> HrResult<String> { ... }
    fn put_Arguments(&self, arguments: &str) -> HrResult<()> { ... }
    fn put_Path(&self, path: &str) -> HrResult<()> { ... }
    fn put_WorkingDirectory(&self, working_directory: &str) -> HrResult<()> { ... }
}
Available on crate features kernel and taskschd only.
Expand description

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

Prefer importing this trait through the prelude:

use winsafe::prelude::*;

Provided Methods§

Object Safety§

This trait is not object safe.

Implementors§