pub trait INotificationActivationCallback_Impl: Sized {
    // Required method
    fn Activate(
        &self,
        appusermodelid: &PCWSTR,
        invokedargs: &PCWSTR,
        data: *const NOTIFICATION_USER_INPUT_DATA,
        count: u32,
    ) -> Result<()>;
}

Required Methods§

fn Activate( &self, appusermodelid: &PCWSTR, invokedargs: &PCWSTR, data: *const NOTIFICATION_USER_INPUT_DATA, count: u32, ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§