pub trait AsyncIFtpAuthorizationProvider_Impl: Sized {
    // Required methods
    fn Begin_GetUserAccessPermission(
        &self,
        pszsessionid: &PCWSTR,
        pszsitename: &PCWSTR,
        pszvirtualpath: &PCWSTR,
        pszusername: &PCWSTR
    ) -> Result<()>;
    fn Finish_GetUserAccessPermission(&self) -> Result<FTP_ACCESS>;
}

Required Methods§

fn Begin_GetUserAccessPermission( &self, pszsessionid: &PCWSTR, pszsitename: &PCWSTR, pszvirtualpath: &PCWSTR, pszusername: &PCWSTR ) -> Result<()>

fn Finish_GetUserAccessPermission(&self) -> Result<FTP_ACCESS>

Object Safety§

This trait is not object safe.

Implementors§