pub struct EmbeddedWalletCreationInput {
pub wallets: Vec<WalletCreationInput>,
}Expand description
The fields describing embedded wallet creation, used for user import and embedded wallet generation.
JSON schema
{
"title": "EmbeddedWalletCreationInput",
"description": "The fields describing embedded wallet creation, used
for user import and embedded wallet generation.",
"type": "object",
"properties": {
"wallets": {
"description": "Wallets to create.",
"type": "array",
"items": {
"$ref": "#/components/schemas/WalletCreationInput"
}
}
},
"x-stainless-model": "embedded_wallets.embedded_wallet_creation_input"
}Fields§
§wallets: Vec<WalletCreationInput>Wallets to create.
Trait Implementations§
Source§impl Clone for EmbeddedWalletCreationInput
impl Clone for EmbeddedWalletCreationInput
Source§fn clone(&self) -> EmbeddedWalletCreationInput
fn clone(&self) -> EmbeddedWalletCreationInput
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 EmbeddedWalletCreationInput
impl Debug for EmbeddedWalletCreationInput
Source§impl<'de> Deserialize<'de> for EmbeddedWalletCreationInput
impl<'de> Deserialize<'de> for EmbeddedWalletCreationInput
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<&EmbeddedWalletCreationInput> for EmbeddedWalletCreationInput
impl From<&EmbeddedWalletCreationInput> for EmbeddedWalletCreationInput
Source§fn from(value: &EmbeddedWalletCreationInput) -> Self
fn from(value: &EmbeddedWalletCreationInput) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for EmbeddedWalletCreationInput
impl RefUnwindSafe for EmbeddedWalletCreationInput
impl Send for EmbeddedWalletCreationInput
impl Sync for EmbeddedWalletCreationInput
impl Unpin for EmbeddedWalletCreationInput
impl UnsafeUnpin for EmbeddedWalletCreationInput
impl UnwindSafe for EmbeddedWalletCreationInput
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