pub trait AsyncIFtpRoleProvider_Impl: Sized {
    // Required methods
    fn Begin_IsUserInRole(
        &self,
        pszsessionid: &PCWSTR,
        pszsitename: &PCWSTR,
        pszusername: &PCWSTR,
        pszrole: &PCWSTR
    ) -> Result<()>;
    fn Finish_IsUserInRole(&self) -> Result<BOOL>;
}

Required Methods§

fn Begin_IsUserInRole( &self, pszsessionid: &PCWSTR, pszsitename: &PCWSTR, pszusername: &PCWSTR, pszrole: &PCWSTR ) -> Result<()>

fn Finish_IsUserInRole(&self) -> Result<BOOL>

Object Safety§

This trait is not object safe.

Implementors§