pub struct ECCurve<'a> {
pub a: &'a [u8],
pub b: &'a [u8],
}
Expand description
Elliptic curve
a and b specify the coefficients of the curve
Fields§
§a: &'a [u8]
§b: &'a [u8]
Trait Implementations§
impl<'a> StructuralPartialEq for ECCurve<'a>
Auto Trait Implementations§
impl<'a> Freeze for ECCurve<'a>
impl<'a> RefUnwindSafe for ECCurve<'a>
impl<'a> Send for ECCurve<'a>
impl<'a> Sync for ECCurve<'a>
impl<'a> Unpin for ECCurve<'a>
impl<'a> UnwindSafe for ECCurve<'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