pub trait IFsrmClassificationRule_Impl: Sized + IFsrmRule_Impl {
    // Required methods
    fn ExecutionOption(&self) -> Result<FsrmExecutionOption>;
    fn SetExecutionOption(
        &self,
        executionoption: FsrmExecutionOption
    ) -> Result<()>;
    fn PropertyAffected(&self) -> Result<BSTR>;
    fn SetPropertyAffected(&self, property: &BSTR) -> Result<()>;
    fn Value(&self) -> Result<BSTR>;
    fn SetValue(&self, value: &BSTR) -> Result<()>;
}

Required Methods§

fn ExecutionOption(&self) -> Result<FsrmExecutionOption>

fn SetExecutionOption(&self, executionoption: FsrmExecutionOption) -> Result<()>

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

fn SetPropertyAffected(&self, property: &BSTR) -> Result<()>

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

fn SetValue(&self, value: &BSTR) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§