Trait IWSMan_Impl
pub trait IWSMan_Impl: IDispatch_Impl {
// Required methods
fn CreateSession(
&self,
connection: &BSTR,
flags: i32,
connectionoptions: Ref<'_, 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: Ref<'_, IDispatch>, ) -> Result<IDispatch>
fn CreateConnectionOptions(&self) -> Result<IDispatch>
fn CommandLine(&self) -> Result<BSTR>
fn Error(&self) -> Result<BSTR>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.