pub enum WalletEntropyType {
Hd,
PrivateKey,
}Expand description
The entropy type of the wallet.
JSON schema
{
"title": "WalletEntropyType",
"description": "The entropy type of the wallet.",
"type": "string",
"enum": [
"hd",
"private-key"
],
"x-stainless-model": "wallets.wallet_entropy_type"
}Variants§
Trait Implementations§
Source§impl Clone for WalletEntropyType
impl Clone for WalletEntropyType
Source§fn clone(&self) -> WalletEntropyType
fn clone(&self) -> WalletEntropyType
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 WalletEntropyType
Source§impl Debug for WalletEntropyType
impl Debug for WalletEntropyType
Source§impl<'de> Deserialize<'de> for WalletEntropyType
impl<'de> Deserialize<'de> for WalletEntropyType
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 WalletEntropyType
impl Display for WalletEntropyType
impl Eq for WalletEntropyType
Source§impl From<&WalletEntropyType> for WalletEntropyType
impl From<&WalletEntropyType> for WalletEntropyType
Source§fn from(value: &WalletEntropyType) -> Self
fn from(value: &WalletEntropyType) -> Self
Converts to this type from the input type.
Source§impl FromStr for WalletEntropyType
impl FromStr for WalletEntropyType
Source§impl Hash for WalletEntropyType
impl Hash for WalletEntropyType
Source§impl Ord for WalletEntropyType
impl Ord for WalletEntropyType
Source§fn cmp(&self, other: &WalletEntropyType) -> Ordering
fn cmp(&self, other: &WalletEntropyType) -> 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 WalletEntropyType
impl PartialEq for WalletEntropyType
Source§fn eq(&self, other: &WalletEntropyType) -> bool
fn eq(&self, other: &WalletEntropyType) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for WalletEntropyType
impl PartialOrd for WalletEntropyType
Source§impl Serialize for WalletEntropyType
impl Serialize for WalletEntropyType
impl StructuralPartialEq for WalletEntropyType
Source§impl TryFrom<&String> for WalletEntropyType
impl TryFrom<&String> for WalletEntropyType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for WalletEntropyType
impl TryFrom<&str> for WalletEntropyType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for WalletEntropyType
impl TryFrom<String> for WalletEntropyType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for WalletEntropyType
impl RefUnwindSafe for WalletEntropyType
impl Send for WalletEntropyType
impl Sync for WalletEntropyType
impl Unpin for WalletEntropyType
impl UnsafeUnpin for WalletEntropyType
impl UnwindSafe for WalletEntropyType
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