pub struct ApplicationCategory {
pub kind: Option<String>,
pub primary: Option<String>,
pub secondary: Option<String>,
}Expand description
An application category object.
This type is not used in any activity, and only used as part of another schema.
Fields§
§kind: Option<String>Uniquely identifies the type of this resource. Value is always the fixed string games#applicationCategory.
primary: Option<String>The primary category.
secondary: Option<String>The secondary category.
Trait Implementations§
Source§impl Clone for ApplicationCategory
impl Clone for ApplicationCategory
Source§fn clone(&self) -> ApplicationCategory
fn clone(&self) -> ApplicationCategory
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 ApplicationCategory
impl Debug for ApplicationCategory
Source§impl Default for ApplicationCategory
impl Default for ApplicationCategory
Source§fn default() -> ApplicationCategory
fn default() -> ApplicationCategory
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ApplicationCategory
impl<'de> Deserialize<'de> for ApplicationCategory
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 Serialize for ApplicationCategory
impl Serialize for ApplicationCategory
impl Part for ApplicationCategory
Auto Trait Implementations§
impl Freeze for ApplicationCategory
impl RefUnwindSafe for ApplicationCategory
impl Send for ApplicationCategory
impl Sync for ApplicationCategory
impl Unpin for ApplicationCategory
impl UnwindSafe for ApplicationCategory
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