pub enum ParsedPrivateKey {
P256(PrivateKey<P256>),
P384(PrivateKey<P384>),
}Expand description
Parsed ECPrivateKey dispatched into the corresponding curve types.
Variants§
Implementations§
Auto Trait Implementations§
impl Freeze for ParsedPrivateKey
impl RefUnwindSafe for ParsedPrivateKey
impl Send for ParsedPrivateKey
impl Sync for ParsedPrivateKey
impl Unpin for ParsedPrivateKey
impl UnsafeUnpin for ParsedPrivateKey
impl UnwindSafe for ParsedPrivateKey
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