Trait IMbnPinManagerEvents_Impl
pub trait IMbnPinManagerEvents_Impl: IUnknownImpl {
// Required methods
fn OnPinListAvailable(
&self,
pinmanager: Ref<'_, IMbnPinManager>,
) -> Result<()>;
fn OnGetPinStateComplete(
&self,
pinmanager: Ref<'_, IMbnPinManager>,
pininfo: &MBN_PIN_INFO,
requestid: u32,
status: HRESULT,
) -> Result<()>;
}
Required Methods§
fn OnPinListAvailable(&self, pinmanager: Ref<'_, IMbnPinManager>) -> Result<()>
fn OnGetPinStateComplete( &self, pinmanager: Ref<'_, IMbnPinManager>, pininfo: &MBN_PIN_INFO, requestid: u32, status: HRESULT, ) -> 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.