pub trait IADsWinNTSystemInfo_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn UserName(&self) -> Result<BSTR>;
    fn ComputerName(&self) -> Result<BSTR>;
    fn DomainName(&self) -> Result<BSTR>;
    fn PDC(&self) -> Result<BSTR>;
}

Required Methods§

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

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

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

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

Object Safety§

This trait is not object safe.

Implementors§