#[repr(u32)]pub enum AeaSignatureMode {
None = 0,
EcdsaP256 = 1,
}Expand description
Wraps AEA signature mode identifiers.
Variants§
None = 0
Wraps the None variant of AeaSignatureMode.
EcdsaP256 = 1
Wraps the EcdsaP256 variant of AeaSignatureMode.
Trait Implementations§
Source§impl Clone for AeaSignatureMode
impl Clone for AeaSignatureMode
Source§fn clone(&self) -> AeaSignatureMode
fn clone(&self) -> AeaSignatureMode
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 AeaSignatureMode
Source§impl Debug for AeaSignatureMode
impl Debug for AeaSignatureMode
impl Eq for AeaSignatureMode
Source§impl Hash for AeaSignatureMode
impl Hash for AeaSignatureMode
Source§impl PartialEq for AeaSignatureMode
impl PartialEq for AeaSignatureMode
Source§fn eq(&self, other: &AeaSignatureMode) -> bool
fn eq(&self, other: &AeaSignatureMode) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AeaSignatureMode
Auto Trait Implementations§
impl Freeze for AeaSignatureMode
impl RefUnwindSafe for AeaSignatureMode
impl Send for AeaSignatureMode
impl Sync for AeaSignatureMode
impl Unpin for AeaSignatureMode
impl UnsafeUnpin for AeaSignatureMode
impl UnwindSafe for AeaSignatureMode
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