#[repr(C)]pub struct relation_t {
pub lp: mp_limb_t,
pub num_factors: mp_limb_signed_t,
pub small_primes: mp_limb_signed_t,
pub small: *mut mp_limb_signed_t,
pub factor: *mut fac_t,
pub Y: fmpz_t,
}Fields§
§lp: mp_limb_t§num_factors: mp_limb_signed_t§small_primes: mp_limb_signed_t§small: *mut mp_limb_signed_t§factor: *mut fac_t§Y: fmpz_tTrait Implementations§
Source§impl Clone for relation_t
impl Clone for relation_t
Source§fn clone(&self) -> relation_t
fn clone(&self) -> relation_t
Returns a duplicate 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 relation_t
impl Debug for relation_t
impl Copy for relation_t
Auto Trait Implementations§
impl Freeze for relation_t
impl RefUnwindSafe for relation_t
impl !Send for relation_t
impl !Sync for relation_t
impl Unpin for relation_t
impl UnwindSafe for relation_t
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