pub enum SignatureScheme {
Pkcs1WithSha256,
Pkcs1WithSha384,
Pkcs1WithSha512,
PssWithSha256,
PssWithSha384,
PssWithSha512,
EcdsaWithP256AndSha256,
EcdsaWithP384AndSha384,
EcdsaWithP521AndSha512,
Ed25519,
Pkcs1WithSha1,
EcdsaWithSha1,
}
Variants
Pkcs1WithSha256
Pkcs1WithSha384
Pkcs1WithSha512
PssWithSha256
PssWithSha384
PssWithSha512
EcdsaWithP256AndSha256
EcdsaWithP384AndSha384
EcdsaWithP521AndSha512
Ed25519
Pkcs1WithSha1
EcdsaWithSha1
Trait Implementations
sourceimpl Clone for SignatureScheme
impl Clone for SignatureScheme
sourcefn clone(&self) -> SignatureScheme
fn clone(&self) -> SignatureScheme
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for SignatureScheme
impl Debug for SignatureScheme
sourceimpl PartialEq<SignatureScheme> for SignatureScheme
impl PartialEq<SignatureScheme> for SignatureScheme
impl Copy for SignatureScheme
impl Eq for SignatureScheme
impl StructuralEq for SignatureScheme
impl StructuralPartialEq for SignatureScheme
Auto Trait Implementations
impl RefUnwindSafe for SignatureScheme
impl Send for SignatureScheme
impl Sync for SignatureScheme
impl Unpin for SignatureScheme
impl UnwindSafe for SignatureScheme
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more