pub trait IADsSession_Impl: Sized + IADs_Impl {
    // Required methods
    fn User(&self) -> Result<BSTR>;
    fn UserPath(&self) -> Result<BSTR>;
    fn Computer(&self) -> Result<BSTR>;
    fn ComputerPath(&self) -> Result<BSTR>;
    fn ConnectTime(&self) -> Result<i32>;
    fn IdleTime(&self) -> Result<i32>;
}

Required Methods§

fn User(&self) -> Result<BSTR>

fn UserPath(&self) -> Result<BSTR>

fn Computer(&self) -> Result<BSTR>

fn ComputerPath(&self) -> Result<BSTR>

fn ConnectTime(&self) -> Result<i32>

fn IdleTime(&self) -> Result<i32>

Object Safety§

This trait is not object safe.

Implementors§