pub trait IFsrmActionEmail_Impl: Sized + 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<()>

Object Safety§

This trait is not object safe.

Implementors§