pub struct LinkJwtInput {
pub token: Option<String>,
}Expand description
Input for linking a custom JWT account.
JSON schema
{
"title": "LinkJwtInput",
"description": "Input for linking a custom JWT account.",
"type": "object",
"properties": {
"token": {
"type": "string"
}
},
"x-stainless-model": "client_auth.link_jwt_input"
}Fields§
§token: Option<String>Trait Implementations§
Source§impl Clone for LinkJwtInput
impl Clone for LinkJwtInput
Source§fn clone(&self) -> LinkJwtInput
fn clone(&self) -> LinkJwtInput
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 LinkJwtInput
impl Debug for LinkJwtInput
Source§impl Default for LinkJwtInput
impl Default for LinkJwtInput
Source§impl<'de> Deserialize<'de> for LinkJwtInput
impl<'de> Deserialize<'de> for LinkJwtInput
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<&LinkJwtInput> for LinkJwtInput
impl From<&LinkJwtInput> for LinkJwtInput
Source§fn from(value: &LinkJwtInput) -> Self
fn from(value: &LinkJwtInput) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for LinkJwtInput
impl RefUnwindSafe for LinkJwtInput
impl Send for LinkJwtInput
impl Sync for LinkJwtInput
impl Unpin for LinkJwtInput
impl UnsafeUnpin for LinkJwtInput
impl UnwindSafe for LinkJwtInput
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