pub trait IFsrmActionReport_Impl: Sized + IFsrmAction_Impl {
    // Required methods
    fn ReportTypes(&self) -> Result<*mut SAFEARRAY>;
    fn SetReportTypes(&self, reporttypes: *const SAFEARRAY) -> Result<()>;
    fn MailTo(&self) -> Result<BSTR>;
    fn SetMailTo(&self, mailto: &BSTR) -> Result<()>;
}

Required Methods§

fn ReportTypes(&self) -> Result<*mut SAFEARRAY>

fn SetReportTypes(&self, reporttypes: *const SAFEARRAY) -> Result<()>

fn MailTo(&self) -> Result<BSTR>

fn SetMailTo(&self, mailto: &BSTR) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§