Trait SnapIn_Impl
pub trait SnapIn_Impl: IDispatch_Impl {
// Required methods
fn Name(&self) -> Result<BSTR>;
fn Vendor(&self) -> Result<BSTR>;
fn Version(&self) -> Result<BSTR>;
fn Extensions(&self) -> Result<Extensions>;
fn SnapinCLSID(&self) -> Result<BSTR>;
fn Properties(&self) -> Result<Properties>;
fn EnableAllExtensions(&self, enable: BOOL) -> Result<()>;
}
Required Methods§
fn Name(&self) -> Result<BSTR>
fn Vendor(&self) -> Result<BSTR>
fn Version(&self) -> Result<BSTR>
fn Extensions(&self) -> Result<Extensions>
fn SnapinCLSID(&self) -> Result<BSTR>
fn Properties(&self) -> Result<Properties>
fn EnableAllExtensions(&self, enable: BOOL) -> 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.