pub trait ICoreAcceleratorKeys_Impl: Sized {
    // Required methods
    fn AcceleratorKeyActivated(
        &self,
        handler: Option<&TypedEventHandler<CoreDispatcher, AcceleratorKeyEventArgs>>
    ) -> Result<EventRegistrationToken>;
    fn RemoveAcceleratorKeyActivated(
        &self,
        cookie: &EventRegistrationToken
    ) -> Result<()>;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§