pub struct SiweNonce {
pub address: String,
pub expires_at: String,
pub nonce: String,
}Expand description
A SIWE nonce response.
JSON schema
{
"title": "SiweNonce",
"description": "A SIWE nonce response.",
"type": "object",
"required": [
"address",
"expires_at",
"nonce"
],
"properties": {
"address": {
"type": "string"
},
"expires_at": {
"type": "string"
},
"nonce": {
"type": "string"
}
},
"x-stainless-model": "client_auth.siwe_nonce"
}Fields§
§address: String§expires_at: String§nonce: StringTrait Implementations§
Source§impl<'de> Deserialize<'de> for SiweNonce
impl<'de> Deserialize<'de> for SiweNonce
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
Auto Trait Implementations§
impl Freeze for SiweNonce
impl RefUnwindSafe for SiweNonce
impl Send for SiweNonce
impl Sync for SiweNonce
impl Unpin for SiweNonce
impl UnsafeUnpin for SiweNonce
impl UnwindSafe for SiweNonce
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