pub struct AdvancedGcdStats {
pub gcds_computed: u64,
pub subresultant_prs: u64,
pub modular_lifts: u64,
}Expand description
Statistics for GCD computation.
Fields§
§gcds_computed: u64GCDs computed.
subresultant_prs: u64Subresultant PRSs computed.
modular_lifts: u64Modular lifts.
Trait Implementations§
Source§impl Clone for AdvancedGcdStats
impl Clone for AdvancedGcdStats
Source§fn clone(&self) -> AdvancedGcdStats
fn clone(&self) -> AdvancedGcdStats
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AdvancedGcdStats
impl Debug for AdvancedGcdStats
Source§impl Default for AdvancedGcdStats
impl Default for AdvancedGcdStats
Source§fn default() -> AdvancedGcdStats
fn default() -> AdvancedGcdStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for AdvancedGcdStats
impl RefUnwindSafe for AdvancedGcdStats
impl Send for AdvancedGcdStats
impl Sync for AdvancedGcdStats
impl Unpin for AdvancedGcdStats
impl UnsafeUnpin for AdvancedGcdStats
impl UnwindSafe for AdvancedGcdStats
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