pub struct ECParameters<'a> {
pub curve_type: ECCurveType,
pub params_content: ECParametersContent<'a>,
}
Expand description
Elliptic curve parameters, defined in RFC4492 section 5.4
Fields§
§curve_type: ECCurveType
Should match a ECCurveType value
params_content: ECParametersContent<'a>
Trait Implementations§
Source§impl<'a> Debug for ECParameters<'a>
impl<'a> Debug for ECParameters<'a>
Source§impl<'a, 'nom> Parse<&'nom [u8]> for ECParameters<'a>where
'nom: 'a,
impl<'a, 'nom> Parse<&'nom [u8]> for ECParameters<'a>where
'nom: 'a,
Source§impl<'a> PartialEq for ECParameters<'a>
impl<'a> PartialEq for ECParameters<'a>
impl<'a> StructuralPartialEq for ECParameters<'a>
Auto Trait Implementations§
impl<'a> Freeze for ECParameters<'a>
impl<'a> RefUnwindSafe for ECParameters<'a>
impl<'a> Send for ECParameters<'a>
impl<'a> Sync for ECParameters<'a>
impl<'a> Unpin for ECParameters<'a>
impl<'a> UnwindSafe for ECParameters<'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