[][src]Enum fruitbasket::ActivationPolicy

pub enum ActivationPolicy {
    Regular,
    Accessory,
    Prohibited,
}

Policies controlling how a Mac application's UI is interacted with

Variants

Regular

Appears in the Dock and menu bar and can have an interactive UI with windows

Accessory

Does not appear in Dock or menu bar, but may create windows

Prohibited

Does not appear in Dock or menu bar, may not create windows (background-only)

Auto Trait Implementations

impl RefUnwindSafe for ActivationPolicy

impl Send for ActivationPolicy

impl Sync for ActivationPolicy

impl Unpin for ActivationPolicy

impl UnwindSafe for ActivationPolicy

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.