pub struct SmartWalletConfigurationDisabled {
pub enabled: bool,
}Expand description
A disabled smart wallet configuration.
JSON schema
{
"title": "SmartWalletConfigurationDisabled",
"description": "A disabled smart wallet configuration.",
"type": "object",
"required": [
"enabled"
],
"properties": {
"enabled": {
"type": "boolean",
"enum": [
false
]
}
},
"x-stainless-model":
"embedded_wallets.smart_wallet_configuration_disabled"
}Fields§
§enabled: boolTrait Implementations§
Source§impl Clone for SmartWalletConfigurationDisabled
impl Clone for SmartWalletConfigurationDisabled
Source§fn clone(&self) -> SmartWalletConfigurationDisabled
fn clone(&self) -> SmartWalletConfigurationDisabled
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<'de> Deserialize<'de> for SmartWalletConfigurationDisabled
impl<'de> Deserialize<'de> for SmartWalletConfigurationDisabled
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<&SmartWalletConfigurationDisabled> for SmartWalletConfigurationDisabled
impl From<&SmartWalletConfigurationDisabled> for SmartWalletConfigurationDisabled
Source§fn from(value: &SmartWalletConfigurationDisabled) -> Self
fn from(value: &SmartWalletConfigurationDisabled) -> Self
Converts to this type from the input type.
Source§impl From<SmartWalletConfigurationDisabled> for SmartWalletConfiguration
impl From<SmartWalletConfigurationDisabled> for SmartWalletConfiguration
Source§fn from(value: SmartWalletConfigurationDisabled) -> Self
fn from(value: SmartWalletConfigurationDisabled) -> Self
Converts to this type from the input type.
Source§impl From<SmartWalletConfigurationDisabled> for SmartWalletConfigurationInput
impl From<SmartWalletConfigurationDisabled> for SmartWalletConfigurationInput
Source§fn from(value: SmartWalletConfigurationDisabled) -> Self
fn from(value: SmartWalletConfigurationDisabled) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SmartWalletConfigurationDisabled
impl RefUnwindSafe for SmartWalletConfigurationDisabled
impl Send for SmartWalletConfigurationDisabled
impl Sync for SmartWalletConfigurationDisabled
impl Unpin for SmartWalletConfigurationDisabled
impl UnsafeUnpin for SmartWalletConfigurationDisabled
impl UnwindSafe for SmartWalletConfigurationDisabled
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