pub struct SiwsNonce {
pub address: String,
pub expires_at: String,
pub nonce: String,
}Expand description
A SIWS nonce response.
JSON schema
{
"title": "SiwsNonce",
"description": "A SIWS 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.siws_nonce"
}Fields§
§address: String§expires_at: String§nonce: StringTrait Implementations§
Source§impl<'de> Deserialize<'de> for SiwsNonce
impl<'de> Deserialize<'de> for SiwsNonce
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 SiwsNonce
impl RefUnwindSafe for SiwsNonce
impl Send for SiwsNonce
impl Sync for SiwsNonce
impl Unpin for SiwsNonce
impl UnsafeUnpin for SiwsNonce
impl UnwindSafe for SiwsNonce
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