pub trait IFsrmReport_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn Type(&self) -> Result<FsrmReportType>;
    fn Name(&self) -> Result<BSTR>;
    fn SetName(&self, name: &BSTR) -> Result<()>;
    fn Description(&self) -> Result<BSTR>;
    fn SetDescription(&self, description: &BSTR) -> Result<()>;
    fn LastGeneratedFileNamePrefix(&self) -> Result<BSTR>;
    fn GetFilter(&self, filter: FsrmReportFilter) -> Result<VARIANT>;
    fn SetFilter(
        &self,
        filter: FsrmReportFilter,
        filtervalue: &VARIANT
    ) -> Result<()>;
    fn Delete(&self) -> Result<()>;
}

Required Methods§

fn Type(&self) -> Result<FsrmReportType>

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

fn SetName(&self, name: &BSTR) -> Result<()>

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

fn SetDescription(&self, description: &BSTR) -> Result<()>

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

fn GetFilter(&self, filter: FsrmReportFilter) -> Result<VARIANT>

fn SetFilter( &self, filter: FsrmReportFilter, filtervalue: &VARIANT ) -> Result<()>

fn Delete(&self) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§