pub trait IWPCProviderConfig_Impl: Sized {
    // Required methods
    fn GetUserSummary(&self, bstrsid: &BSTR) -> Result<BSTR>;
    fn Configure(&self, hwnd: HWND, bstrsid: &BSTR) -> Result<()>;
    fn RequestOverride(
        &self,
        hwnd: HWND,
        bstrpath: &BSTR,
        dwflags: &WPCFLAG_RESTRICTION
    ) -> Result<()>;
}

Required Methods§

fn GetUserSummary(&self, bstrsid: &BSTR) -> Result<BSTR>

fn Configure(&self, hwnd: HWND, bstrsid: &BSTR) -> Result<()>

fn RequestOverride( &self, hwnd: HWND, bstrpath: &BSTR, dwflags: &WPCFLAG_RESTRICTION ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§