#[repr(C)]
pub struct ecp_group {
Show 15 fields pub id: ecp_group_id, pub P: mpi, pub A: mpi, pub B: mpi, pub G: ecp_point, pub N: mpi, pub pbits: size_t, pub nbits: size_t, pub h: c_uint, pub modp: Option<unsafe extern "C" fn(arg1: *mut mpi) -> c_int>, pub t_pre: Option<unsafe extern "C" fn(arg1: *mut ecp_point, arg2: *mut c_void) -> c_int>, pub t_post: Option<unsafe extern "C" fn(arg1: *mut ecp_point, arg2: *mut c_void) -> c_int>, pub t_data: *mut c_void, pub T: *mut ecp_point, pub T_size: size_t,
}

Fields

id: ecp_group_idP: mpiA: mpiB: mpiG: ecp_pointN: mpipbits: size_tnbits: size_th: c_uintmodp: Option<unsafe extern "C" fn(arg1: *mut mpi) -> c_int>t_pre: Option<unsafe extern "C" fn(arg1: *mut ecp_point, arg2: *mut c_void) -> c_int>t_post: Option<unsafe extern "C" fn(arg1: *mut ecp_point, arg2: *mut c_void) -> c_int>t_data: *mut c_voidT: *mut ecp_pointT_size: size_t

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Returns the “default value” for a type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.