pub trait IUserNotificationCallback_Impl: Sized {
    // Required methods
    fn OnBalloonUserClick(&self, pt: *const POINT) -> Result<()>;
    fn OnLeftClick(&self, pt: *const POINT) -> Result<()>;
    fn OnContextMenu(&self, pt: *const POINT) -> Result<()>;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§