pub enum EmbeddedWalletMode {
LegacyEmbeddedWalletsOnly,
UserControlledServerWalletsOnly,
}Expand description
The mode for embedded wallets.
JSON schema
{
"title": "EmbeddedWalletMode",
"description": "The mode for embedded wallets.",
"type": "string",
"enum": [
"legacy-embedded-wallets-only",
"user-controlled-server-wallets-only"
],
"x-stainless-model": "apps.embedded_wallet_mode"
}Variants§
Trait Implementations§
Source§impl Clone for EmbeddedWalletMode
impl Clone for EmbeddedWalletMode
Source§fn clone(&self) -> EmbeddedWalletMode
fn clone(&self) -> EmbeddedWalletMode
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 moreimpl Copy for EmbeddedWalletMode
Source§impl Debug for EmbeddedWalletMode
impl Debug for EmbeddedWalletMode
Source§impl<'de> Deserialize<'de> for EmbeddedWalletMode
impl<'de> Deserialize<'de> for EmbeddedWalletMode
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 Display for EmbeddedWalletMode
impl Display for EmbeddedWalletMode
impl Eq for EmbeddedWalletMode
Source§impl From<&EmbeddedWalletMode> for EmbeddedWalletMode
impl From<&EmbeddedWalletMode> for EmbeddedWalletMode
Source§fn from(value: &EmbeddedWalletMode) -> Self
fn from(value: &EmbeddedWalletMode) -> Self
Converts to this type from the input type.
Source§impl FromStr for EmbeddedWalletMode
impl FromStr for EmbeddedWalletMode
Source§impl Hash for EmbeddedWalletMode
impl Hash for EmbeddedWalletMode
Source§impl Ord for EmbeddedWalletMode
impl Ord for EmbeddedWalletMode
Source§fn cmp(&self, other: &EmbeddedWalletMode) -> Ordering
fn cmp(&self, other: &EmbeddedWalletMode) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for EmbeddedWalletMode
impl PartialEq for EmbeddedWalletMode
Source§fn eq(&self, other: &EmbeddedWalletMode) -> bool
fn eq(&self, other: &EmbeddedWalletMode) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for EmbeddedWalletMode
impl PartialOrd for EmbeddedWalletMode
Source§impl Serialize for EmbeddedWalletMode
impl Serialize for EmbeddedWalletMode
impl StructuralPartialEq for EmbeddedWalletMode
Source§impl TryFrom<&String> for EmbeddedWalletMode
impl TryFrom<&String> for EmbeddedWalletMode
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for EmbeddedWalletMode
impl TryFrom<&str> for EmbeddedWalletMode
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for EmbeddedWalletMode
impl TryFrom<String> for EmbeddedWalletMode
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for EmbeddedWalletMode
impl RefUnwindSafe for EmbeddedWalletMode
impl Send for EmbeddedWalletMode
impl Sync for EmbeddedWalletMode
impl Unpin for EmbeddedWalletMode
impl UnsafeUnpin for EmbeddedWalletMode
impl UnwindSafe for EmbeddedWalletMode
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