pub trait ISensLogon2_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn Logon(&self, bstrusername: &BSTR, dwsessionid: u32) -> Result<()>;
    fn Logoff(&self, bstrusername: &BSTR, dwsessionid: u32) -> Result<()>;
    fn SessionDisconnect(
        &self,
        bstrusername: &BSTR,
        dwsessionid: u32
    ) -> Result<()>;
    fn SessionReconnect(
        &self,
        bstrusername: &BSTR,
        dwsessionid: u32
    ) -> Result<()>;
    fn PostShell(&self, bstrusername: &BSTR, dwsessionid: u32) -> Result<()>;
}

Required Methods§

fn Logon(&self, bstrusername: &BSTR, dwsessionid: u32) -> Result<()>

fn Logoff(&self, bstrusername: &BSTR, dwsessionid: u32) -> Result<()>

fn SessionDisconnect(&self, bstrusername: &BSTR, dwsessionid: u32) -> Result<()>

fn SessionReconnect(&self, bstrusername: &BSTR, dwsessionid: u32) -> Result<()>

fn PostShell(&self, bstrusername: &BSTR, dwsessionid: u32) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§