pub trait INetFwProduct_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn RuleCategories(&self) -> Result<VARIANT>;
    fn SetRuleCategories(&self, rulecategories: &VARIANT) -> Result<()>;
    fn DisplayName(&self) -> Result<BSTR>;
    fn SetDisplayName(&self, displayname: &BSTR) -> Result<()>;
    fn PathToSignedProductExe(&self) -> Result<BSTR>;
}

Required Methods§

fn RuleCategories(&self) -> Result<VARIANT>

fn SetRuleCategories(&self, rulecategories: &VARIANT) -> Result<()>

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

fn SetDisplayName(&self, displayname: &BSTR) -> Result<()>

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

Object Safety§

This trait is not object safe.

Implementors§