pub struct LinkedAccountTwitchOauth {
pub first_verified_at: Option<f64>,
pub latest_verified_at: Option<f64>,
pub subject: String,
pub type_: LinkedAccountTwitchOauthType,
pub username: Option<String>,
pub verified_at: f64,
}Expand description
LinkedAccountTwitchOauth
JSON schema
{
"title": "Twitch",
"type": "object",
"required": [
"first_verified_at",
"latest_verified_at",
"subject",
"type",
"username",
"verified_at"
],
"properties": {
"first_verified_at": {
"type": [
"number",
"null"
]
},
"latest_verified_at": {
"type": [
"number",
"null"
]
},
"subject": {
"type": "string"
},
"type": {
"type": "string",
"enum": [
"twitch_oauth"
]
},
"username": {
"type": [
"string",
"null"
]
},
"verified_at": {
"type": "number"
}
}
}Fields§
§first_verified_at: Option<f64>§latest_verified_at: Option<f64>§subject: String§type_: LinkedAccountTwitchOauthType§username: Option<String>§verified_at: f64Trait Implementations§
Source§impl Clone for LinkedAccountTwitchOauth
impl Clone for LinkedAccountTwitchOauth
Source§fn clone(&self) -> LinkedAccountTwitchOauth
fn clone(&self) -> LinkedAccountTwitchOauth
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 LinkedAccountTwitchOauth
impl Debug for LinkedAccountTwitchOauth
Source§impl<'de> Deserialize<'de> for LinkedAccountTwitchOauth
impl<'de> Deserialize<'de> for LinkedAccountTwitchOauth
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<LinkedAccountTwitchOauth, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<LinkedAccountTwitchOauth, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<&LinkedAccountTwitchOauth> for LinkedAccountTwitchOauth
impl From<&LinkedAccountTwitchOauth> for LinkedAccountTwitchOauth
Source§fn from(value: &LinkedAccountTwitchOauth) -> LinkedAccountTwitchOauth
fn from(value: &LinkedAccountTwitchOauth) -> LinkedAccountTwitchOauth
Converts to this type from the input type.
Source§impl From<LinkedAccountTwitchOauth> for LinkedAccount
impl From<LinkedAccountTwitchOauth> for LinkedAccount
Source§fn from(value: LinkedAccountTwitchOauth) -> LinkedAccount
fn from(value: LinkedAccountTwitchOauth) -> LinkedAccount
Converts to this type from the input type.
Source§impl Serialize for LinkedAccountTwitchOauth
impl Serialize for LinkedAccountTwitchOauth
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for LinkedAccountTwitchOauth
impl RefUnwindSafe for LinkedAccountTwitchOauth
impl Send for LinkedAccountTwitchOauth
impl Sync for LinkedAccountTwitchOauth
impl Unpin for LinkedAccountTwitchOauth
impl UnwindSafe for LinkedAccountTwitchOauth
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