pub trait IBannerNotificationHandler_Impl: Sized {
    // Required method
    fn OnBannerEvent(
        &self,
        notification: *const BANNER_NOTIFICATION
    ) -> Result<()>;
}

Required Methods§

fn OnBannerEvent(&self, notification: *const BANNER_NOTIFICATION) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§