Trait IFsrmActionEmail_Impl
pub trait IFsrmActionEmail_Impl: IFsrmAction_Impl {
Show 14 methods
// Required methods
fn MailFrom(&self) -> Result<BSTR>;
fn SetMailFrom(&self, mailfrom: &BSTR) -> Result<()>;
fn MailReplyTo(&self) -> Result<BSTR>;
fn SetMailReplyTo(&self, mailreplyto: &BSTR) -> Result<()>;
fn MailTo(&self) -> Result<BSTR>;
fn SetMailTo(&self, mailto: &BSTR) -> Result<()>;
fn MailCc(&self) -> Result<BSTR>;
fn SetMailCc(&self, mailcc: &BSTR) -> Result<()>;
fn MailBcc(&self) -> Result<BSTR>;
fn SetMailBcc(&self, mailbcc: &BSTR) -> Result<()>;
fn MailSubject(&self) -> Result<BSTR>;
fn SetMailSubject(&self, mailsubject: &BSTR) -> Result<()>;
fn MessageText(&self) -> Result<BSTR>;
fn SetMessageText(&self, messagetext: &BSTR) -> Result<()>;
}
Required Methods§
fn MailFrom(&self) -> Result<BSTR>
fn SetMailFrom(&self, mailfrom: &BSTR) -> Result<()>
fn MailReplyTo(&self) -> Result<BSTR>
fn SetMailReplyTo(&self, mailreplyto: &BSTR) -> Result<()>
fn MailTo(&self) -> Result<BSTR>
fn SetMailTo(&self, mailto: &BSTR) -> Result<()>
fn MailCc(&self) -> Result<BSTR>
fn SetMailCc(&self, mailcc: &BSTR) -> Result<()>
fn MailBcc(&self) -> Result<BSTR>
fn SetMailBcc(&self, mailbcc: &BSTR) -> Result<()>
fn MailSubject(&self) -> Result<BSTR>
fn SetMailSubject(&self, mailsubject: &BSTR) -> Result<()>
fn MessageText(&self) -> Result<BSTR>
fn SetMessageText(&self, messagetext: &BSTR) -> Result<()>
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.