Trait ISideShowNotificationManager_Impl
pub trait ISideShowNotificationManager_Impl: IUnknownImpl {
// Required methods
fn Show(
&self,
in_pinotification: Ref<'_, ISideShowNotification>,
) -> Result<()>;
fn Revoke(&self, in_notificationid: u32) -> Result<()>;
fn RevokeAll(&self) -> Result<()>;
}
Required Methods§
fn Show(&self, in_pinotification: Ref<'_, ISideShowNotification>) -> Result<()>
fn Revoke(&self, in_notificationid: u32) -> Result<()>
fn RevokeAll(&self) -> 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.