[][src]Struct creator_tools::types::StatusBar

pub struct StatusBar {
    pub status_bar_hidden: Option<bool>,
    pub status_bar_style: Option<StatusBarStyle>,
    pub status_bar_tint_parameters: Option<StatusBarTintParameters>,
    pub view_controller_based_status_bar_appearance: Option<bool>,
}

StatusBar.

Fields

status_bar_hidden: Option<bool>

A Boolean value indicating whether the status bar is initially hidden when the app launches.

status_bar_style: Option<StatusBarStyle>

The style of the status bar as the app launches.

status_bar_tint_parameters: Option<StatusBarTintParameters>

The status bar tint.

view_controller_based_status_bar_appearance: Option<bool>

A Boolean value indicating whether the status bar appearance is based on the style preferred for the current view controller.

Trait Implementations

impl Clone for StatusBar[src]

impl Debug for StatusBar[src]

impl Default for StatusBar[src]

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

impl PartialEq<StatusBar> for StatusBar[src]

impl Serialize for StatusBar[src]

impl StructuralPartialEq for StatusBar[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>,