pub trait IWSMan_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn CreateSession(
        &self,
        connection: &BSTR,
        flags: i32,
        connectionoptions: Option<&IDispatch>
    ) -> Result<IDispatch>;
    fn CreateConnectionOptions(&self) -> Result<IDispatch>;
    fn CommandLine(&self) -> Result<BSTR>;
    fn Error(&self) -> Result<BSTR>;
}

Required Methods§

fn CreateSession( &self, connection: &BSTR, flags: i32, connectionoptions: Option<&IDispatch> ) -> Result<IDispatch>

fn CreateConnectionOptions(&self) -> Result<IDispatch>

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

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

Object Safety§

This trait is not object safe.

Implementors§