pub struct GcdStats {
pub gcds_computed: u64,
pub euclidean_steps: u64,
pub modular_reductions: u64,
pub time_us: u64,
}Expand description
Statistics for GCD computation.
Fields§
§gcds_computed: u64GCDs computed.
euclidean_steps: u64Euclidean steps performed.
modular_reductions: u64Modular reductions performed.
time_us: u64Time (microseconds).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for GcdStats
impl RefUnwindSafe for GcdStats
impl Send for GcdStats
impl Sync for GcdStats
impl Unpin for GcdStats
impl UnsafeUnpin for GcdStats
impl UnwindSafe for GcdStats
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