pub struct ComparisonRow {
pub name: String,
pub ticks: u64,
pub wall_time_ms: u64,
pub graph_nodes: usize,
pub graph_edges: usize,
pub density: f64,
pub clustering: f64,
pub avg_degree: f64,
pub shared_term_ratio: f64,
pub gini: f64,
}Expand description
A single row in the comparison table.
Fields§
§name: String§ticks: u64§wall_time_ms: u64§graph_nodes: usize§graph_edges: usize§density: f64§clustering: f64§avg_degree: f64§gini: f64Trait Implementations§
Source§impl Clone for ComparisonRow
impl Clone for ComparisonRow
Source§fn clone(&self) -> ComparisonRow
fn clone(&self) -> ComparisonRow
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 ComparisonRow
impl Debug for ComparisonRow
Auto Trait Implementations§
impl Freeze for ComparisonRow
impl RefUnwindSafe for ComparisonRow
impl Send for ComparisonRow
impl Sync for ComparisonRow
impl Unpin for ComparisonRow
impl UnwindSafe for ComparisonRow
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