Enum winit::os::macos::ActivationPolicy[][src]

pub enum ActivationPolicy {
    Regular,
    Accessory,
    Prohibited,
}

Corresponds to NSApplicationActivationPolicy.

Variants

Corresponds to NSApplicationActivationPolicyRegular.

Corresponds to NSApplicationActivationPolicyAccessory.

Corresponds to NSApplicationActivationPolicyProhibited.

Trait Implementations

impl Debug for ActivationPolicy
[src]

Formats the value using the given formatter. Read more

impl Clone for ActivationPolicy
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for ActivationPolicy
[src]

impl PartialEq for ActivationPolicy
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Default for ActivationPolicy
[src]

Returns the "default value" for a type. Read more

impl From<ActivationPolicy> for NSApplicationActivationPolicy
[src]

Performs the conversion.

Auto Trait Implementations