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§fn default() -> CustomJwtLinkRequestBody
fn default() -> CustomJwtLinkRequestBody
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CustomJwtLinkRequestBody
impl<'de> Deserialize<'de> for CustomJwtLinkRequestBody
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<CustomJwtLinkRequestBody, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<CustomJwtLinkRequestBody, <__D as Deserializer<'de>>::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) -> CustomJwtLinkRequestBody
fn from(value: &CustomJwtLinkRequestBody) -> CustomJwtLinkRequestBody
Converts to this type from the input type.
Source§impl Serialize for CustomJwtLinkRequestBody
impl Serialize for CustomJwtLinkRequestBody
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 CustomJwtLinkRequestBody
impl RefUnwindSafe for CustomJwtLinkRequestBody
impl Send for CustomJwtLinkRequestBody
impl Sync for CustomJwtLinkRequestBody
impl Unpin 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