pub struct RootCountStats {
pub roots_counted: u64,
pub sturm_sequences: u64,
pub descartes_variations: u64,
}Expand description
Statistics for root counting.
Fields§
§roots_counted: u64Roots counted.
sturm_sequences: u64Sturm sequences computed.
descartes_variations: u64Descartes sign variations computed.
Trait Implementations§
Source§impl Clone for RootCountStats
impl Clone for RootCountStats
Source§fn clone(&self) -> RootCountStats
fn clone(&self) -> RootCountStats
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 RootCountStats
impl Debug for RootCountStats
Source§impl Default for RootCountStats
impl Default for RootCountStats
Source§fn default() -> RootCountStats
fn default() -> RootCountStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for RootCountStats
impl RefUnwindSafe for RootCountStats
impl Send for RootCountStats
impl Sync for RootCountStats
impl Unpin for RootCountStats
impl UnsafeUnpin for RootCountStats
impl UnwindSafe for RootCountStats
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