pub enum ECParametersContent<'a> {
ExplicitPrime(ExplicitPrimeContent<'a>),
NamedGroup(NamedGroup),
}
Expand description
Elliptic curve parameters content (depending on EC type)
Variants§
ExplicitPrime(ExplicitPrimeContent<'a>)
NamedGroup(NamedGroup)
Implementations§
Source§impl<'a, 'nom> ECParametersContent<'a>where
'nom: 'a,
impl<'a, 'nom> ECParametersContent<'a>where
'nom: 'a,
Trait Implementations§
Source§impl<'a> Debug for ECParametersContent<'a>
impl<'a> Debug for ECParametersContent<'a>
Source§impl<'a> PartialEq for ECParametersContent<'a>
impl<'a> PartialEq for ECParametersContent<'a>
impl<'a> StructuralPartialEq for ECParametersContent<'a>
Auto Trait Implementations§
impl<'a> Freeze for ECParametersContent<'a>
impl<'a> RefUnwindSafe for ECParametersContent<'a>
impl<'a> Send for ECParametersContent<'a>
impl<'a> Sync for ECParametersContent<'a>
impl<'a> Unpin for ECParametersContent<'a>
impl<'a> UnwindSafe for ECParametersContent<'a>
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