pub trait IAzBizRuleContext_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn SetBusinessRuleResult(&self, bresult: BOOL) -> Result<()>;
    fn SetBusinessRuleString(&self, bstrbusinessrulestring: &BSTR) -> Result<()>;
    fn BusinessRuleString(&self) -> Result<BSTR>;
    fn GetParameter(&self, bstrparametername: &BSTR) -> Result<VARIANT>;
}

Required Methods§

fn SetBusinessRuleResult(&self, bresult: BOOL) -> Result<()>

fn SetBusinessRuleString(&self, bstrbusinessrulestring: &BSTR) -> Result<()>

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

fn GetParameter(&self, bstrparametername: &BSTR) -> Result<VARIANT>

Object Safety§

This trait is not object safe.

Implementors§