[][src]Struct creator_tools::types::Termination

pub struct Termination {
    pub get_app_died_events: Option<bool>,
    pub supports_sudden_termination: Option<bool>,
    pub application_exits_on_suspend: Option<bool>,
}

Termination.

Fields

get_app_died_events: Option<bool>

A Boolean value indicating whether the app is notified when a child process dies.

supports_sudden_termination: Option<bool>

A Boolean value indicating whether the system may terminate the app to log out or shut down more quickly.

application_exits_on_suspend: Option<bool>

Deprecated: A Boolean value indicating whether the app terminates, rather than moves to the background, when the app quits.

Trait Implementations

impl Clone for Termination[src]

impl Debug for Termination[src]

impl Default for Termination[src]

impl<'de> Deserialize<'de> for Termination[src]

impl PartialEq<Termination> for Termination[src]

impl Serialize for Termination[src]

impl StructuralPartialEq for Termination[src]

Auto Trait Implementations

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,