#[repr(C)]pub struct n_primes_struct {
pub small_i: mp_limb_signed_t,
pub small_num: mp_limb_signed_t,
pub small_primes: *mut c_uint,
pub sieve_a: mp_limb_t,
pub sieve_b: mp_limb_t,
pub sieve_i: mp_limb_signed_t,
pub sieve_num: mp_limb_signed_t,
pub sieve: *mut c_char,
}
Fields§
§small_i: mp_limb_signed_t
§small_num: mp_limb_signed_t
§small_primes: *mut c_uint
§sieve_a: mp_limb_t
§sieve_b: mp_limb_t
§sieve_i: mp_limb_signed_t
§sieve_num: mp_limb_signed_t
§sieve: *mut c_char
Trait Implementations§
Source§impl Clone for n_primes_struct
impl Clone for n_primes_struct
Source§fn clone(&self) -> n_primes_struct
fn clone(&self) -> n_primes_struct
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for n_primes_struct
impl Debug for n_primes_struct
impl Copy for n_primes_struct
Auto Trait Implementations§
impl Freeze for n_primes_struct
impl RefUnwindSafe for n_primes_struct
impl !Send for n_primes_struct
impl !Sync for n_primes_struct
impl Unpin for n_primes_struct
impl UnwindSafe for n_primes_struct
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