pub struct SiweInitInput {
pub address: Option<String>,
pub token: Option<String>,
}Expand description
Input for initiating a SIWE ceremony.
JSON schema
{
"title": "SiweInitInput",
"description": "Input for initiating a SIWE ceremony.",
"type": "object",
"properties": {
"address": {
"type": "string"
},
"token": {
"type": "string"
}
},
"x-stainless-model": "client_auth.siwe_init_input"
}Fields§
§address: Option<String>§token: Option<String>Trait Implementations§
Source§impl Clone for SiweInitInput
impl Clone for SiweInitInput
Source§fn clone(&self) -> SiweInitInput
fn clone(&self) -> SiweInitInput
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 SiweInitInput
impl Debug for SiweInitInput
Source§impl Default for SiweInitInput
impl Default for SiweInitInput
Source§impl<'de> Deserialize<'de> for SiweInitInput
impl<'de> Deserialize<'de> for SiweInitInput
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<&SiweInitInput> for SiweInitInput
impl From<&SiweInitInput> for SiweInitInput
Source§fn from(value: &SiweInitInput) -> Self
fn from(value: &SiweInitInput) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SiweInitInput
impl RefUnwindSafe for SiweInitInput
impl Send for SiweInitInput
impl Sync for SiweInitInput
impl Unpin for SiweInitInput
impl UnsafeUnpin for SiweInitInput
impl UnwindSafe for SiweInitInput
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