pub enum SignAlgorithm {
EdDSA,
ES256,
}Expand description
Signing algorithms supported by the VTA sign-request protocol.
Variants§
Trait Implementations§
Source§impl Clone for SignAlgorithm
impl Clone for SignAlgorithm
Source§fn clone(&self) -> SignAlgorithm
fn clone(&self) -> SignAlgorithm
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 Debug for SignAlgorithm
impl Debug for SignAlgorithm
Source§impl<'de> Deserialize<'de> for SignAlgorithm
impl<'de> Deserialize<'de> for SignAlgorithm
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 SignAlgorithm
impl Display for SignAlgorithm
Source§impl PartialEq for SignAlgorithm
impl PartialEq for SignAlgorithm
Source§impl Serialize for SignAlgorithm
impl Serialize for SignAlgorithm
impl StructuralPartialEq for SignAlgorithm
Auto Trait Implementations§
impl Freeze for SignAlgorithm
impl RefUnwindSafe for SignAlgorithm
impl Send for SignAlgorithm
impl Sync for SignAlgorithm
impl Unpin for SignAlgorithm
impl UnsafeUnpin for SignAlgorithm
impl UnwindSafe for SignAlgorithm
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