pub struct Naming {
pub bundle_name: Option<String>,
pub bundle_display_name: Option<String>,
pub bundle_spoken_name: Option<String>,
}Expand description
Naming
Fields§
§bundle_name: Option<String>A user-visible short name for the bundle.
This name can contain up to 15 characters. The system may display it to users if CFBundleDisplayName isn’t set.
§Availability
- iOS 2.0+
- macOS 10.0+
- tvOS 9.0+
- watchOS 2.0+
§Framework
Core Foundation
bundle_display_name: Option<String>The user-visible name for the bundle, used by Siri and visible on the iOS Home screen.
Use this key if you want a product name that’s longer than CFBundleName.
§Availability
- iOS 2.0+
- macOS 10.0+
- tvOS 9.0+
- watchOS 2.0+
§Framework
Core Foundation
bundle_spoken_name: Option<String>A replacement for the app name in text-to-speech operations.
§Availability
- iOS 2.0+
- macOS 10.0+
- tvOS 9.0+
- watchOS 2.0+
§Framework
Core Foundation
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Naming
impl<'de> Deserialize<'de> for Naming
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 Eq for Naming
impl StructuralPartialEq for Naming
Auto Trait Implementations§
impl Freeze for Naming
impl RefUnwindSafe for Naming
impl Send for Naming
impl Sync for Naming
impl Unpin for Naming
impl UnwindSafe for Naming
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.