pub struct GetByWalletAddressRequestBody {
pub address: Address,
}Expand description
Request body for looking up a wallet by its blockchain address.
JSON schema
{
"title": "GetByWalletAddressRequestBody",
"description": "Request body for looking up a wallet by its blockchain
address.",
"examples": [
{
"address": "0xF1DBff66C993EE895C8cb176c30b07A559d76496"
}
],
"type": "object",
"required": [
"address"
],
"properties": {
"address": {
"allOf": [
{
"$ref": "#/components/schemas/Address"
},
{
"description": "The blockchain address of the wallet to look
up."
}
]
}
},
"x-stainless-model": "wallets.get_by_wallet_address_request_body"
}Fields§
§address: AddressTrait Implementations§
Source§impl Clone for GetByWalletAddressRequestBody
impl Clone for GetByWalletAddressRequestBody
Source§fn clone(&self) -> GetByWalletAddressRequestBody
fn clone(&self) -> GetByWalletAddressRequestBody
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<'de> Deserialize<'de> for GetByWalletAddressRequestBody
impl<'de> Deserialize<'de> for GetByWalletAddressRequestBody
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<&GetByWalletAddressRequestBody> for GetByWalletAddressRequestBody
impl From<&GetByWalletAddressRequestBody> for GetByWalletAddressRequestBody
Source§fn from(value: &GetByWalletAddressRequestBody) -> Self
fn from(value: &GetByWalletAddressRequestBody) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for GetByWalletAddressRequestBody
impl RefUnwindSafe for GetByWalletAddressRequestBody
impl Send for GetByWalletAddressRequestBody
impl Sync for GetByWalletAddressRequestBody
impl Unpin for GetByWalletAddressRequestBody
impl UnsafeUnpin for GetByWalletAddressRequestBody
impl UnwindSafe for GetByWalletAddressRequestBody
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