Trait winsafe::prelude::taskschd_IEmailAction

source ·
pub trait taskschd_IEmailAction: taskschd_IAction {
Show 16 methods // Provided methods fn get_Bcc(&self) -> HrResult<String> { ... } fn get_Body(&self) -> HrResult<String> { ... } fn get_Cc(&self) -> HrResult<String> { ... } fn get_From(&self) -> HrResult<String> { ... } fn get_ReplyTo(&self) -> HrResult<String> { ... } fn get_Server(&self) -> HrResult<String> { ... } fn get_Subject(&self) -> HrResult<String> { ... } fn get_To(&self) -> HrResult<String> { ... } fn put_Bcc(&self, bcc: &str) -> HrResult<()> { ... } fn put_Body(&self, body: &str) -> HrResult<()> { ... } fn put_Cc(&self, cc: &str) -> HrResult<()> { ... } fn put_From(&self, from: &str) -> HrResult<()> { ... } fn put_ReplyTo(&self, reply_to: &str) -> HrResult<()> { ... } fn put_Server(&self, server: &str) -> HrResult<()> { ... } fn put_Subject(&self, subject: &str) -> HrResult<()> { ... } fn put_To(&self, to: &str) -> HrResult<()> { ... }
}
Available on crate features kernel and taskschd only.
Expand description

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

Prefer importing this trait through the prelude:

use winsafe::prelude::*;

Provided Methods§

Object Safety§

This trait is not object safe.

Implementors§