pub enum CryptoAlgorithm {
ED25519,
SECP256K1,
}
Expand description
Represents the supported cryptography algorithms.
Variants§
Trait Implementations§
Source§impl Clone for CryptoAlgorithm
impl Clone for CryptoAlgorithm
Source§fn clone(&self) -> CryptoAlgorithm
fn clone(&self) -> CryptoAlgorithm
Returns a copy of the value. Read more
1.0.0 · 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 CryptoAlgorithm
impl Debug for CryptoAlgorithm
Source§impl<'de> Deserialize<'de> for CryptoAlgorithm
impl<'de> Deserialize<'de> for CryptoAlgorithm
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 CryptoAlgorithm
impl Display for CryptoAlgorithm
Source§impl IntoEnumIterator for CryptoAlgorithm
impl IntoEnumIterator for CryptoAlgorithm
type Iterator = CryptoAlgorithmIter
fn iter() -> CryptoAlgorithmIter ⓘ
Source§impl PartialEq for CryptoAlgorithm
impl PartialEq for CryptoAlgorithm
Source§impl Serialize for CryptoAlgorithm
impl Serialize for CryptoAlgorithm
impl Eq for CryptoAlgorithm
impl StructuralPartialEq for CryptoAlgorithm
Auto Trait Implementations§
impl Freeze for CryptoAlgorithm
impl RefUnwindSafe for CryptoAlgorithm
impl Send for CryptoAlgorithm
impl Sync for CryptoAlgorithm
impl Unpin for CryptoAlgorithm
impl UnwindSafe for CryptoAlgorithm
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.