pub trait taskschd_IRegistrationInfo: oleaut_IDispatch {
// Provided methods
fn get_Author(&self) -> HrResult<String> { ... }
fn put_Author(&self, author: &str) -> HrResult<()> { ... }
}
Available on crate features
kernel
and taskschd
only.Expand description
This trait is enabled with the taskschd
feature, and provides methods for
IRegistrationInfo
.
Prefer importing this trait through the prelude:
use winsafe::prelude::*;
Provided Methods§
Sourcefn get_Author(&self) -> HrResult<String>
fn get_Author(&self) -> HrResult<String>
IRegistrationInfo::get_Author
method.
Sourcefn put_Author(&self, author: &str) -> HrResult<()>
fn put_Author(&self, author: &str) -> HrResult<()>
IRegistrationInfo::put_Author
method.
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.