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>,
}Expand description
Status Bar
Fields§
A Boolean value indicating whether the status bar is initially hidden when the app launches.
§Availability
- iOS 2.0+
§Framework
- UIKit
status_bar_style: Option<StatusBarStyle>§status_bar_tint_parameters: Option<StatusBarTintParameters>§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.
§Availability
- iOS 2.0+
§Framework
- UIKit
Trait Implementations§
Source§impl<'de> Deserialize<'de> for StatusBar
impl<'de> Deserialize<'de> for StatusBar
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for StatusBar
Auto Trait Implementations§
impl Freeze for StatusBar
impl RefUnwindSafe for StatusBar
impl Send for StatusBar
impl Sync for StatusBar
impl Unpin for StatusBar
impl UnwindSafe for StatusBar
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more