pub struct CustomJwtLinkRequestBody {
pub token: Option<String>,
}Expand description
The request body for linking a custom JWT account
JSON schema
{
"title": "CustomJwtLinkRequestBody",
"description": "The request body for linking a custom JWT account",
"type": "object",
"properties": {
"token": {
"type": "string"
}
}
}Fields§
§token: Option<String>Trait Implementations§
Source§impl Clone for CustomJwtLinkRequestBody
impl Clone for CustomJwtLinkRequestBody
Source§fn clone(&self) -> CustomJwtLinkRequestBody
fn clone(&self) -> CustomJwtLinkRequestBody
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 CustomJwtLinkRequestBody
impl Debug for CustomJwtLinkRequestBody
Source§impl Default for CustomJwtLinkRequestBody
impl Default for CustomJwtLinkRequestBody
Source§impl<'de> Deserialize<'de> for CustomJwtLinkRequestBody
impl<'de> Deserialize<'de> for CustomJwtLinkRequestBody
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<&CustomJwtLinkRequestBody> for CustomJwtLinkRequestBody
impl From<&CustomJwtLinkRequestBody> for CustomJwtLinkRequestBody
Source§fn from(value: &CustomJwtLinkRequestBody) -> Self
fn from(value: &CustomJwtLinkRequestBody) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for CustomJwtLinkRequestBody
impl RefUnwindSafe for CustomJwtLinkRequestBody
impl Send for CustomJwtLinkRequestBody
impl Sync for CustomJwtLinkRequestBody
impl Unpin for CustomJwtLinkRequestBody
impl UnsafeUnpin for CustomJwtLinkRequestBody
impl UnwindSafe for CustomJwtLinkRequestBody
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