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