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