pub struct WalletCustodian {
pub name: String,
}Expand description
Information about the custodian managing this wallet.
JSON schema
{
"title": "WalletCustodian",
"description": "Information about the custodian managing this wallet.",
"type": "object",
"required": [
"name"
],
"properties": {
"name": {
"type": "string"
}
},
"x-stainless-model": "wallets.wallet_custodian"
}Fields§
§name: StringTrait Implementations§
Source§impl Clone for WalletCustodian
impl Clone for WalletCustodian
Source§fn clone(&self) -> WalletCustodian
fn clone(&self) -> WalletCustodian
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 WalletCustodian
impl Debug for WalletCustodian
Source§impl<'de> Deserialize<'de> for WalletCustodian
impl<'de> Deserialize<'de> for WalletCustodian
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<&WalletCustodian> for WalletCustodian
impl From<&WalletCustodian> for WalletCustodian
Source§fn from(value: &WalletCustodian) -> Self
fn from(value: &WalletCustodian) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for WalletCustodian
impl RefUnwindSafe for WalletCustodian
impl Send for WalletCustodian
impl Sync for WalletCustodian
impl Unpin for WalletCustodian
impl UnsafeUnpin for WalletCustodian
impl UnwindSafe for WalletCustodian
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