pub struct InstanceWebDetails {
pub kind: Option<String>,
pub launch_url: Option<String>,
pub preferred: Option<bool>,
}Expand description
The Web details resource.
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#instanceWebDetails.
launch_url: Option<String>Launch URL for the game.
preferred: Option<bool>Indicates that this instance is the default for new installations.
Trait Implementations§
Source§impl Clone for InstanceWebDetails
impl Clone for InstanceWebDetails
Source§fn clone(&self) -> InstanceWebDetails
fn clone(&self) -> InstanceWebDetails
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 InstanceWebDetails
impl Debug for InstanceWebDetails
Source§impl Default for InstanceWebDetails
impl Default for InstanceWebDetails
Source§fn default() -> InstanceWebDetails
fn default() -> InstanceWebDetails
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for InstanceWebDetails
impl<'de> Deserialize<'de> for InstanceWebDetails
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 InstanceWebDetails
impl Serialize for InstanceWebDetails
impl Part for InstanceWebDetails
Auto Trait Implementations§
impl Freeze for InstanceWebDetails
impl RefUnwindSafe for InstanceWebDetails
impl Send for InstanceWebDetails
impl Sync for InstanceWebDetails
impl Unpin for InstanceWebDetails
impl UnwindSafe for InstanceWebDetails
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