pub trait IFtpRoleProvider_Impl: Sized {
    // Required method
    fn IsUserInRole(
        &self,
        pszsessionid: &PCWSTR,
        pszsitename: &PCWSTR,
        pszusername: &PCWSTR,
        pszrole: &PCWSTR
    ) -> Result<BOOL>;
}

Required Methods§

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

Object Safety§

This trait is not object safe.

Implementors§