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<LinkedAccountCustomJwt, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<LinkedAccountCustomJwt, <__D as Deserializer<'de>>::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) -> LinkedAccountCustomJwt
fn from(value: &LinkedAccountCustomJwt) -> LinkedAccountCustomJwt
Converts to this type from the input type.
Source§impl From<LinkedAccountCustomJwt> for LinkedAccount
impl From<LinkedAccountCustomJwt> for LinkedAccount
Source§fn from(value: LinkedAccountCustomJwt) -> LinkedAccount
fn from(value: LinkedAccountCustomJwt) -> LinkedAccount
Converts to this type from the input type.
Source§impl Serialize for LinkedAccountCustomJwt
impl Serialize for LinkedAccountCustomJwt
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 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