Trait IExplorerCommandProvider_Impl
pub trait IExplorerCommandProvider_Impl: IUnknownImpl {
// Required methods
fn GetCommands(
&self,
punksite: Ref<'_, IUnknown>,
riid: *const GUID,
ppv: *mut *mut c_void,
) -> Result<()>;
fn GetCommand(
&self,
rguidcommandid: *const GUID,
riid: *const GUID,
ppv: *mut *mut c_void,
) -> Result<()>;
}
Required Methods§
fn GetCommands( &self, punksite: Ref<'_, IUnknown>, riid: *const GUID, ppv: *mut *mut c_void, ) -> Result<()>
fn GetCommand( &self, rguidcommandid: *const GUID, riid: *const GUID, ppv: *mut *mut c_void, ) -> 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.