pub struct Categorization {
pub bundle_package_type: Option<String>,
pub application_category_type: Option<AppCategoryType>,
}Expand description
Categorization
Fields§
§bundle_package_type: Option<String>The type of bundle.
This key consists of a four-letter code for the bundle type. For apps, the code is APPL, for frameworks, it’s FMWK, and for bundles, it’s BNDL. The default value is derived from the bundle extension or, if it can’t be derived, the default value is BNDL.
§Availability
- iOS 2.0+
- macOS 10.0+
- tvOS 9.0+
- watchOS 2.0+
§Framework
Core Foundation
application_category_type: Option<AppCategoryType>The category that best describes your app for the App Store.
§Availability
- macOS 10.0+
§Framework
Core Services
Trait Implementations§
Source§impl Clone for Categorization
impl Clone for Categorization
Source§fn clone(&self) -> Categorization
fn clone(&self) -> Categorization
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 Categorization
impl Debug for Categorization
Source§impl Default for Categorization
impl Default for Categorization
Source§fn default() -> Categorization
fn default() -> Categorization
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for Categorization
impl<'de> Deserialize<'de> for Categorization
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 Categorization
impl PartialEq for Categorization
Source§impl Serialize for Categorization
impl Serialize for Categorization
impl Eq for Categorization
impl StructuralPartialEq for Categorization
Auto Trait Implementations§
impl Freeze for Categorization
impl RefUnwindSafe for Categorization
impl Send for Categorization
impl Sync for Categorization
impl Unpin for Categorization
impl UnwindSafe for Categorization
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.