pub struct LinkedAccountCustomJwtInput {
pub custom_user_id: LinkedAccountCustomJwtInputCustomUserId,
pub type_: LinkedAccountCustomJwtInputType,
}Expand description
LinkedAccountCustomJwtInput
JSON schema
{
"title": "Custom JWT",
"type": "object",
"required": [
"custom_user_id",
"type"
],
"properties": {
"custom_user_id": {
"type": "string",
"maxLength": 256,
"minLength": 1
},
"type": {
"type": "string",
"enum": [
"custom_auth"
]
}
}
}Fields§
§custom_user_id: LinkedAccountCustomJwtInputCustomUserId§type_: LinkedAccountCustomJwtInputTypeTrait Implementations§
Source§impl Clone for LinkedAccountCustomJwtInput
impl Clone for LinkedAccountCustomJwtInput
Source§fn clone(&self) -> LinkedAccountCustomJwtInput
fn clone(&self) -> LinkedAccountCustomJwtInput
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 LinkedAccountCustomJwtInput
impl Debug for LinkedAccountCustomJwtInput
Source§impl<'de> Deserialize<'de> for LinkedAccountCustomJwtInput
impl<'de> Deserialize<'de> for LinkedAccountCustomJwtInput
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<&LinkedAccountCustomJwtInput> for LinkedAccountCustomJwtInput
impl From<&LinkedAccountCustomJwtInput> for LinkedAccountCustomJwtInput
Source§fn from(value: &LinkedAccountCustomJwtInput) -> Self
fn from(value: &LinkedAccountCustomJwtInput) -> Self
Converts to this type from the input type.
Source§impl From<LinkedAccountCustomJwtInput> for LinkedAccountInput
impl From<LinkedAccountCustomJwtInput> for LinkedAccountInput
Source§fn from(value: LinkedAccountCustomJwtInput) -> Self
fn from(value: LinkedAccountCustomJwtInput) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for LinkedAccountCustomJwtInput
impl RefUnwindSafe for LinkedAccountCustomJwtInput
impl Send for LinkedAccountCustomJwtInput
impl Sync for LinkedAccountCustomJwtInput
impl Unpin for LinkedAccountCustomJwtInput
impl UnwindSafe for LinkedAccountCustomJwtInput
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