Trait IWdsTransportSetupManager_Impl
pub trait IWdsTransportSetupManager_Impl: IDispatch_Impl {
// Required methods
fn Version(&self) -> Result<u64>;
fn InstalledFeatures(&self) -> Result<u32>;
fn Protocols(&self) -> Result<u32>;
fn RegisterContentProvider(
&self,
bszname: &BSTR,
bszdescription: &BSTR,
bszfilepath: &BSTR,
bszinitializationroutine: &BSTR,
) -> Result<()>;
fn DeregisterContentProvider(&self, bszname: &BSTR) -> Result<()>;
}
Required Methods§
fn Version(&self) -> Result<u64>
fn InstalledFeatures(&self) -> Result<u32>
fn Protocols(&self) -> Result<u32>
fn RegisterContentProvider( &self, bszname: &BSTR, bszdescription: &BSTR, bszfilepath: &BSTR, bszinitializationroutine: &BSTR, ) -> Result<()>
fn DeregisterContentProvider(&self, bszname: &BSTR) -> Result<()>
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.