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