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<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 From<&LinkedAccountTwitchOauth> for LinkedAccountTwitchOauth
impl From<&LinkedAccountTwitchOauth> for LinkedAccountTwitchOauth
Source§fn from(value: &LinkedAccountTwitchOauth) -> Self
fn from(value: &LinkedAccountTwitchOauth) -> Self
Converts to this type from the input type.
Source§impl From<LinkedAccountTwitchOauth> for LinkedAccount
impl From<LinkedAccountTwitchOauth> for LinkedAccount
Source§fn from(value: LinkedAccountTwitchOauth) -> Self
fn from(value: LinkedAccountTwitchOauth) -> Self
Converts to this type from the input type.
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