pub trait ISideShowNotificationManager_Impl: Sized {
    // Required methods
    fn Show(
        &self,
        in_pinotification: Option<&ISideShowNotification>
    ) -> Result<()>;
    fn Revoke(&self, in_notificationid: u32) -> Result<()>;
    fn RevokeAll(&self) -> Result<()>;
}

Required Methods§

fn Show(&self, in_pinotification: Option<&ISideShowNotification>) -> Result<()>

fn Revoke(&self, in_notificationid: u32) -> Result<()>

fn RevokeAll(&self) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§