pub trait IWSManConnectionOptions_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn UserName(&self) -> Result<BSTR>;
    fn SetUserName(&self, name: &BSTR) -> Result<()>;
    fn SetPassword(&self, password: &BSTR) -> Result<()>;
}

Required Methods§

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

fn SetUserName(&self, name: &BSTR) -> Result<()>

fn SetPassword(&self, password: &BSTR) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§