pub enum LinkedAccountEmbeddedWallet {
EthereumEmbeddedWallet(LinkedAccountEthereumEmbeddedWallet),
SolanaEmbeddedWallet(LinkedAccountSolanaEmbeddedWallet),
BitcoinSegwitEmbeddedWallet(LinkedAccountBitcoinSegwitEmbeddedWallet),
BitcoinTaprootEmbeddedWallet(LinkedAccountBitcoinTaprootEmbeddedWallet),
CurveSigningEmbeddedWallet(LinkedAccountCurveSigningEmbeddedWallet),
}Expand description
LinkedAccountEmbeddedWallet
JSON schema
{
"title": "LinkedAccountEmbeddedWallet",
"oneOf": [
{
"$ref": "#/components/schemas/LinkedAccountEthereumEmbeddedWallet"
},
{
"$ref": "#/components/schemas/LinkedAccountSolanaEmbeddedWallet"
},
{
"$ref":
"#/components/schemas/LinkedAccountBitcoinSegwitEmbeddedWallet"
},
{
"$ref":
"#/components/schemas/LinkedAccountBitcoinTaprootEmbeddedWallet"
},
{
"$ref":
"#/components/schemas/LinkedAccountCurveSigningEmbeddedWallet"
}
],
"x-stainless-model": "users.linked_account_embedded_wallet"
}Variants§
EthereumEmbeddedWallet(LinkedAccountEthereumEmbeddedWallet)
SolanaEmbeddedWallet(LinkedAccountSolanaEmbeddedWallet)
BitcoinSegwitEmbeddedWallet(LinkedAccountBitcoinSegwitEmbeddedWallet)
BitcoinTaprootEmbeddedWallet(LinkedAccountBitcoinTaprootEmbeddedWallet)
CurveSigningEmbeddedWallet(LinkedAccountCurveSigningEmbeddedWallet)
Trait Implementations§
Source§impl Clone for LinkedAccountEmbeddedWallet
impl Clone for LinkedAccountEmbeddedWallet
Source§fn clone(&self) -> LinkedAccountEmbeddedWallet
fn clone(&self) -> LinkedAccountEmbeddedWallet
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 LinkedAccountEmbeddedWallet
impl Debug for LinkedAccountEmbeddedWallet
Source§impl<'de> Deserialize<'de> for LinkedAccountEmbeddedWallet
impl<'de> Deserialize<'de> for LinkedAccountEmbeddedWallet
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<&LinkedAccountEmbeddedWallet> for LinkedAccountEmbeddedWallet
impl From<&LinkedAccountEmbeddedWallet> for LinkedAccountEmbeddedWallet
Source§fn from(value: &LinkedAccountEmbeddedWallet) -> Self
fn from(value: &LinkedAccountEmbeddedWallet) -> Self
Converts to this type from the input type.
Source§impl From<LinkedAccountBitcoinSegwitEmbeddedWallet> for LinkedAccountEmbeddedWallet
impl From<LinkedAccountBitcoinSegwitEmbeddedWallet> for LinkedAccountEmbeddedWallet
Source§fn from(value: LinkedAccountBitcoinSegwitEmbeddedWallet) -> Self
fn from(value: LinkedAccountBitcoinSegwitEmbeddedWallet) -> Self
Converts to this type from the input type.
Source§impl From<LinkedAccountBitcoinTaprootEmbeddedWallet> for LinkedAccountEmbeddedWallet
impl From<LinkedAccountBitcoinTaprootEmbeddedWallet> for LinkedAccountEmbeddedWallet
Source§fn from(value: LinkedAccountBitcoinTaprootEmbeddedWallet) -> Self
fn from(value: LinkedAccountBitcoinTaprootEmbeddedWallet) -> Self
Converts to this type from the input type.
Source§impl From<LinkedAccountCurveSigningEmbeddedWallet> for LinkedAccountEmbeddedWallet
impl From<LinkedAccountCurveSigningEmbeddedWallet> for LinkedAccountEmbeddedWallet
Source§fn from(value: LinkedAccountCurveSigningEmbeddedWallet) -> Self
fn from(value: LinkedAccountCurveSigningEmbeddedWallet) -> Self
Converts to this type from the input type.
Source§impl From<LinkedAccountEthereumEmbeddedWallet> for LinkedAccountEmbeddedWallet
impl From<LinkedAccountEthereumEmbeddedWallet> for LinkedAccountEmbeddedWallet
Source§fn from(value: LinkedAccountEthereumEmbeddedWallet) -> Self
fn from(value: LinkedAccountEthereumEmbeddedWallet) -> Self
Converts to this type from the input type.
Source§impl From<LinkedAccountSolanaEmbeddedWallet> for LinkedAccountEmbeddedWallet
impl From<LinkedAccountSolanaEmbeddedWallet> for LinkedAccountEmbeddedWallet
Source§fn from(value: LinkedAccountSolanaEmbeddedWallet) -> Self
fn from(value: LinkedAccountSolanaEmbeddedWallet) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for LinkedAccountEmbeddedWallet
impl RefUnwindSafe for LinkedAccountEmbeddedWallet
impl Send for LinkedAccountEmbeddedWallet
impl Sync for LinkedAccountEmbeddedWallet
impl Unpin for LinkedAccountEmbeddedWallet
impl UnsafeUnpin for LinkedAccountEmbeddedWallet
impl UnwindSafe for LinkedAccountEmbeddedWallet
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