#[repr(C)]pub struct ecc_point {
pub x: *mut c_void,
pub y: *mut c_void,
pub z: *mut c_void,
}
Expand description
A point on a ECC curve, stored in Jacbobian format such that (x,y,z) => (x/z^2, y/z^3, 1) when interpretted as affine
Fields§
§x: *mut c_void
The x co-ordinate
y: *mut c_void
The y co-ordinate
z: *mut c_void
The z co-ordinate
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ecc_point
impl RefUnwindSafe for ecc_point
impl !Send for ecc_point
impl !Sync for ecc_point
impl Unpin for ecc_point
impl UnwindSafe for ecc_point
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