pub struct EmbeddedWalletChainConfig {
pub create_on_login: EmbeddedWalletCreateOnLogin,
}Expand description
Chain-specific configuration for embedded wallets.
JSON schema
{
"title": "EmbeddedWalletChainConfig",
"description": "Chain-specific configuration for embedded wallets.",
"type": "object",
"required": [
"create_on_login"
],
"properties": {
"create_on_login": {
"$ref": "#/components/schemas/EmbeddedWalletCreateOnLogin"
}
},
"x-stainless-model": "apps.embedded_wallet_chain_config"
}Fields§
§create_on_login: EmbeddedWalletCreateOnLoginTrait Implementations§
Source§impl Clone for EmbeddedWalletChainConfig
impl Clone for EmbeddedWalletChainConfig
Source§fn clone(&self) -> EmbeddedWalletChainConfig
fn clone(&self) -> EmbeddedWalletChainConfig
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 EmbeddedWalletChainConfig
impl Debug for EmbeddedWalletChainConfig
Source§impl<'de> Deserialize<'de> for EmbeddedWalletChainConfig
impl<'de> Deserialize<'de> for EmbeddedWalletChainConfig
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<&EmbeddedWalletChainConfig> for EmbeddedWalletChainConfig
impl From<&EmbeddedWalletChainConfig> for EmbeddedWalletChainConfig
Source§fn from(value: &EmbeddedWalletChainConfig) -> Self
fn from(value: &EmbeddedWalletChainConfig) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for EmbeddedWalletChainConfig
impl RefUnwindSafe for EmbeddedWalletChainConfig
impl Send for EmbeddedWalletChainConfig
impl Sync for EmbeddedWalletChainConfig
impl Unpin for EmbeddedWalletChainConfig
impl UnsafeUnpin for EmbeddedWalletChainConfig
impl UnwindSafe for EmbeddedWalletChainConfig
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