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