pub struct WalletAuthRequest {
pub wallet_address: String,
pub challenge_id: String,
pub signature: String,
}Expand description
Request body for POST /v1/auth/wallet.
Fields§
§wallet_address: StringThe wallet address (checksummed or lowercase).
challenge_id: StringThe challenge ID from the challenge endpoint.
signature: StringThe wallet’s signature of the challenge text.
Trait Implementations§
Source§impl Clone for WalletAuthRequest
impl Clone for WalletAuthRequest
Source§fn clone(&self) -> WalletAuthRequest
fn clone(&self) -> WalletAuthRequest
Returns a duplicate of the value. Read more
1.0.0 · 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 WalletAuthRequest
impl Debug for WalletAuthRequest
Auto Trait Implementations§
impl Freeze for WalletAuthRequest
impl RefUnwindSafe for WalletAuthRequest
impl Send for WalletAuthRequest
impl Sync for WalletAuthRequest
impl Unpin for WalletAuthRequest
impl UnsafeUnpin for WalletAuthRequest
impl UnwindSafe for WalletAuthRequest
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