pub trait IWSDScopeMatchingRule_Impl: Sized {
    // Required methods
    fn GetScopeRule(&self) -> Result<PCWSTR>;
    fn MatchScopes(
        &self,
        pszscope1: &PCWSTR,
        pszscope2: &PCWSTR
    ) -> Result<BOOL>;
}

Required Methods§

fn GetScopeRule(&self) -> Result<PCWSTR>

fn MatchScopes(&self, pszscope1: &PCWSTR, pszscope2: &PCWSTR) -> Result<BOOL>

Object Safety§

This trait is not object safe.

Implementors§