pub struct SteamApplicationConfiguration {
pub api_mode: Option<SteamApiMode>,
pub button_text: Option<String>,
pub client_id: Option<String>,
pub scope: Option<String>,
pub web_api_key: Option<String>,
pub data: Option<HashMap<String, Value>>,
pub create_registration: Option<bool>,
}
Expand description
SteamApplicationConfiguration :
Fields§
§api_mode: Option<SteamApiMode>
§client_id: Option<String>
§scope: Option<String>
§web_api_key: Option<String>
§data: Option<HashMap<String, Value>>
§create_registration: Option<bool>
Implementations§
Trait Implementations§
Source§impl Clone for SteamApplicationConfiguration
impl Clone for SteamApplicationConfiguration
Source§fn clone(&self) -> SteamApplicationConfiguration
fn clone(&self) -> SteamApplicationConfiguration
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 Default for SteamApplicationConfiguration
impl Default for SteamApplicationConfiguration
Source§fn default() -> SteamApplicationConfiguration
fn default() -> SteamApplicationConfiguration
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SteamApplicationConfiguration
impl<'de> Deserialize<'de> for SteamApplicationConfiguration
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 SteamApplicationConfiguration
impl PartialEq for SteamApplicationConfiguration
Source§fn eq(&self, other: &SteamApplicationConfiguration) -> bool
fn eq(&self, other: &SteamApplicationConfiguration) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for SteamApplicationConfiguration
Auto Trait Implementations§
impl Freeze for SteamApplicationConfiguration
impl RefUnwindSafe for SteamApplicationConfiguration
impl Send for SteamApplicationConfiguration
impl Sync for SteamApplicationConfiguration
impl Unpin for SteamApplicationConfiguration
impl UnwindSafe for SteamApplicationConfiguration
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