pub struct LaunchScreenDefinitions {
pub color_name: Option<String>,
pub launch_screen: LaunchScreen,
}Expand description
Launch Screen Definitions
Fields§
§color_name: Option<String>A unique name for the launch screen configuration.
You can choose any name you want for the identifier, as long as it’s unique among all your app’s configuration identifiers. Use this value to refer to the configuration when storing a URL to configuration mapping as the value for the UIURLToLaunchScreenAssociations key, or when specifying a default configuration with the UIDefaultLaunchScreen key.
launch_screen: LaunchScreenTrait Implementations§
Source§impl Clone for LaunchScreenDefinitions
impl Clone for LaunchScreenDefinitions
Source§fn clone(&self) -> LaunchScreenDefinitions
fn clone(&self) -> LaunchScreenDefinitions
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for LaunchScreenDefinitions
impl Debug for LaunchScreenDefinitions
Source§impl Default for LaunchScreenDefinitions
impl Default for LaunchScreenDefinitions
Source§fn default() -> LaunchScreenDefinitions
fn default() -> LaunchScreenDefinitions
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LaunchScreenDefinitions
impl<'de> Deserialize<'de> for LaunchScreenDefinitions
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
Source§impl PartialEq for LaunchScreenDefinitions
impl PartialEq for LaunchScreenDefinitions
Source§impl Serialize for LaunchScreenDefinitions
impl Serialize for LaunchScreenDefinitions
impl Eq for LaunchScreenDefinitions
impl StructuralPartialEq for LaunchScreenDefinitions
Auto Trait Implementations§
impl Freeze for LaunchScreenDefinitions
impl RefUnwindSafe for LaunchScreenDefinitions
impl Send for LaunchScreenDefinitions
impl Sync for LaunchScreenDefinitions
impl Unpin for LaunchScreenDefinitions
impl UnwindSafe for LaunchScreenDefinitions
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.