#[repr(C)]pub struct nmod_poly_stack_struct {
pub poly_array: *mut *mut n_poly_struct,
pub poly_alloc: mp_limb_signed_t,
pub poly_top: mp_limb_signed_t,
pub mpolyun_array: *mut *mut nmod_mpolyun_struct,
pub mpolyun_alloc: mp_limb_signed_t,
pub mpolyun_top: mp_limb_signed_t,
pub mpolyn_array: *mut *mut nmod_mpolyn_struct,
pub mpolyn_alloc: mp_limb_signed_t,
pub mpolyn_top: mp_limb_signed_t,
pub ctx: *const nmod_mpoly_ctx_struct,
pub bits: mp_limb_t,
}Fields§
§poly_array: *mut *mut n_poly_struct§poly_alloc: mp_limb_signed_t§poly_top: mp_limb_signed_t§mpolyun_array: *mut *mut nmod_mpolyun_struct§mpolyun_alloc: mp_limb_signed_t§mpolyun_top: mp_limb_signed_t§mpolyn_array: *mut *mut nmod_mpolyn_struct§mpolyn_alloc: mp_limb_signed_t§mpolyn_top: mp_limb_signed_t§ctx: *const nmod_mpoly_ctx_struct§bits: mp_limb_tTrait Implementations§
Source§impl Clone for nmod_poly_stack_struct
impl Clone for nmod_poly_stack_struct
Source§fn clone(&self) -> nmod_poly_stack_struct
fn clone(&self) -> nmod_poly_stack_struct
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 nmod_poly_stack_struct
impl Debug for nmod_poly_stack_struct
impl Copy for nmod_poly_stack_struct
Auto Trait Implementations§
impl Freeze for nmod_poly_stack_struct
impl RefUnwindSafe for nmod_poly_stack_struct
impl !Send for nmod_poly_stack_struct
impl !Sync for nmod_poly_stack_struct
impl Unpin for nmod_poly_stack_struct
impl UnwindSafe for nmod_poly_stack_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