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