pub trait EventLoopWindowTargetExtMacOS {
    // Required methods
    fn hide_application(&self);
    fn hide_other_applications(&self);
}
Expand description

Additional methods on EventLoopWindowTarget that are specific to macOS.

Required Methods§

source

fn hide_application(&self)

Hide the entire application. In most applications this is typically triggered with Command-H.

source

fn hide_other_applications(&self)

Hide the other applications. In most applications this is typically triggered with Command+Option-H.

Implementors§