pub struct UnsupportedSignatureAlgorithmForPublicKeyContext {
pub signature_algorithm_id: Vec<u8>,
pub public_key_algorithm_id: Vec<u8>,
}
Expand description
Additional context for the UnsupportedSignatureAlgorithmForPublicKey
error variant.
The contents of this type depend on whether the alloc
feature is enabled.
Fields§
§signature_algorithm_id: Vec<u8>
Available on crate feature
alloc
only.The signature algorithm OID.
public_key_algorithm_id: Vec<u8>
Available on crate feature
alloc
only.The public key algorithm OID.
Trait Implementations§
Source§impl Clone for UnsupportedSignatureAlgorithmForPublicKeyContext
impl Clone for UnsupportedSignatureAlgorithmForPublicKeyContext
Source§fn clone(&self) -> UnsupportedSignatureAlgorithmForPublicKeyContext
fn clone(&self) -> UnsupportedSignatureAlgorithmForPublicKeyContext
Returns a duplicate 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 PartialEq for UnsupportedSignatureAlgorithmForPublicKeyContext
impl PartialEq for UnsupportedSignatureAlgorithmForPublicKeyContext
Source§fn eq(&self, other: &UnsupportedSignatureAlgorithmForPublicKeyContext) -> bool
fn eq(&self, other: &UnsupportedSignatureAlgorithmForPublicKeyContext) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Eq for UnsupportedSignatureAlgorithmForPublicKeyContext
impl StructuralPartialEq for UnsupportedSignatureAlgorithmForPublicKeyContext
Auto Trait Implementations§
impl Freeze for UnsupportedSignatureAlgorithmForPublicKeyContext
impl RefUnwindSafe for UnsupportedSignatureAlgorithmForPublicKeyContext
impl Send for UnsupportedSignatureAlgorithmForPublicKeyContext
impl Sync for UnsupportedSignatureAlgorithmForPublicKeyContext
impl Unpin for UnsupportedSignatureAlgorithmForPublicKeyContext
impl UnwindSafe for UnsupportedSignatureAlgorithmForPublicKeyContext
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