pub struct FactorizationStats {
pub factorizations: usize,
pub cache_hits: usize,
pub hensel_lifts: usize,
pub square_free_decompositions: usize,
}Expand description
Factorization statistics.
Fields§
§factorizations: usizeNumber of factorizations performed
cache_hits: usizeCache hits
hensel_lifts: usizeHensel lifts performed
square_free_decompositions: usizeSquare-free decompositions
Trait Implementations§
Source§impl Clone for FactorizationStats
impl Clone for FactorizationStats
Source§fn clone(&self) -> FactorizationStats
fn clone(&self) -> FactorizationStats
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 FactorizationStats
impl Debug for FactorizationStats
Source§impl Default for FactorizationStats
impl Default for FactorizationStats
Source§fn default() -> FactorizationStats
fn default() -> FactorizationStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for FactorizationStats
impl RefUnwindSafe for FactorizationStats
impl Send for FactorizationStats
impl Sync for FactorizationStats
impl Unpin for FactorizationStats
impl UnsafeUnpin for FactorizationStats
impl UnwindSafe for FactorizationStats
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