[][src]Struct antic::n_ecm_s

#[repr(C)]pub struct n_ecm_s {
    pub x: mp_limb_t,
    pub z: mp_limb_t,
    pub a24: mp_limb_t,
    pub ninv: mp_limb_t,
    pub normbits: mp_limb_t,
    pub one: mp_limb_t,
    pub GCD_table: *mut c_uchar,
    pub prime_table: *mut *mut c_uchar,
}

ECM functions

Fields

x: mp_limb_tz: mp_limb_ta24: mp_limb_tninv: mp_limb_tnormbits: mp_limb_tone: mp_limb_tGCD_table: *mut c_ucharprime_table: *mut *mut c_uchar

Trait Implementations

impl Clone for n_ecm_s[src]

impl Copy for n_ecm_s[src]

impl Debug for n_ecm_s[src]

Auto Trait Implementations

impl RefUnwindSafe for n_ecm_s

impl !Send for n_ecm_s

impl !Sync for n_ecm_s

impl Unpin for n_ecm_s

impl UnwindSafe for n_ecm_s

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,