pub struct LinkedAccountTwitterOauth {
pub first_verified_at: Option<f64>,
pub latest_verified_at: Option<f64>,
pub name: Option<String>,
pub profile_picture_url: Option<String>,
pub subject: String,
pub type_: LinkedAccountTwitterOauthType,
pub username: Option<String>,
pub verified_at: f64,
}Expand description
LinkedAccountTwitterOauth
JSON schema
{
"title": "Twitter",
"type": "object",
"required": [
"first_verified_at",
"latest_verified_at",
"name",
"profile_picture_url",
"subject",
"type",
"username",
"verified_at"
],
"properties": {
"first_verified_at": {
"type": [
"number",
"null"
]
},
"latest_verified_at": {
"type": [
"number",
"null"
]
},
"name": {
"type": [
"string",
"null"
]
},
"profile_picture_url": {
"type": [
"string",
"null"
]
},
"subject": {
"type": "string"
},
"type": {
"type": "string",
"enum": [
"twitter_oauth"
]
},
"username": {
"type": [
"string",
"null"
]
},
"verified_at": {
"type": "number"
}
}
}Fields§
§first_verified_at: Option<f64>§latest_verified_at: Option<f64>§name: Option<String>§profile_picture_url: Option<String>§subject: String§type_: LinkedAccountTwitterOauthType§username: Option<String>§verified_at: f64Trait Implementations§
Source§impl Clone for LinkedAccountTwitterOauth
impl Clone for LinkedAccountTwitterOauth
Source§fn clone(&self) -> LinkedAccountTwitterOauth
fn clone(&self) -> LinkedAccountTwitterOauth
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 LinkedAccountTwitterOauth
impl Debug for LinkedAccountTwitterOauth
Source§impl<'de> Deserialize<'de> for LinkedAccountTwitterOauth
impl<'de> Deserialize<'de> for LinkedAccountTwitterOauth
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<&LinkedAccountTwitterOauth> for LinkedAccountTwitterOauth
impl From<&LinkedAccountTwitterOauth> for LinkedAccountTwitterOauth
Source§fn from(value: &LinkedAccountTwitterOauth) -> Self
fn from(value: &LinkedAccountTwitterOauth) -> Self
Converts to this type from the input type.
Source§impl From<LinkedAccountTwitterOauth> for LinkedAccount
impl From<LinkedAccountTwitterOauth> for LinkedAccount
Source§fn from(value: LinkedAccountTwitterOauth) -> Self
fn from(value: LinkedAccountTwitterOauth) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for LinkedAccountTwitterOauth
impl RefUnwindSafe for LinkedAccountTwitterOauth
impl Send for LinkedAccountTwitterOauth
impl Sync for LinkedAccountTwitterOauth
impl Unpin for LinkedAccountTwitterOauth
impl UnwindSafe for LinkedAccountTwitterOauth
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