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