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 for AlgorithmIdentifierParameters
impl PartialEq for AlgorithmIdentifierParameters
Source§fn eq(&self, other: &AlgorithmIdentifierParameters) -> bool
fn eq(&self, other: &AlgorithmIdentifierParameters) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Eq for AlgorithmIdentifierParameters
impl StructuralPartialEq for AlgorithmIdentifierParameters
Auto Trait Implementations§
impl Freeze for AlgorithmIdentifierParameters
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