pub enum AlgorithmIdentifierParameters {
None,
Null,
Aes(AesParameters),
Ec(EcParameters),
RsassaPss(RsassaPssParams),
}
Variants§
Trait Implementations§
source§impl Clone for AlgorithmIdentifierParameters
impl Clone for AlgorithmIdentifierParameters
source§fn clone(&self) -> AlgorithmIdentifierParameters
fn clone(&self) -> AlgorithmIdentifierParameters
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 PartialEq<AlgorithmIdentifierParameters> for AlgorithmIdentifierParameters
impl PartialEq<AlgorithmIdentifierParameters> for AlgorithmIdentifierParameters
source§fn eq(&self, other: &AlgorithmIdentifierParameters) -> bool
fn eq(&self, other: &AlgorithmIdentifierParameters) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for AlgorithmIdentifierParameters
impl StructuralEq for AlgorithmIdentifierParameters
impl StructuralPartialEq for AlgorithmIdentifierParameters
Auto Trait Implementations§
impl RefUnwindSafe for AlgorithmIdentifierParameters
impl Send for AlgorithmIdentifierParameters
impl Sync for AlgorithmIdentifierParameters
impl Unpin for AlgorithmIdentifierParameters
impl UnwindSafe for AlgorithmIdentifierParameters
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