pub struct ThresholdSweepRow {
pub run_id: String,
pub n_events: usize,
pub tau_threshold: f64,
pub reachable_count: usize,
pub reachable_fraction: f64,
pub edge_count: usize,
pub mean_out_degree: f64,
pub largest_component_fraction: f64,
pub component_entropy: f64,
}Fields§
§run_id: String§n_events: usize§tau_threshold: f64§reachable_count: usize§reachable_fraction: f64§edge_count: usize§mean_out_degree: f64§largest_component_fraction: f64§component_entropy: f64Trait Implementations§
Source§impl Clone for ThresholdSweepRow
impl Clone for ThresholdSweepRow
Source§fn clone(&self) -> ThresholdSweepRow
fn clone(&self) -> ThresholdSweepRow
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 moreAuto Trait Implementations§
impl Freeze for ThresholdSweepRow
impl RefUnwindSafe for ThresholdSweepRow
impl Send for ThresholdSweepRow
impl Sync for ThresholdSweepRow
impl Unpin for ThresholdSweepRow
impl UnsafeUnpin for ThresholdSweepRow
impl UnwindSafe for ThresholdSweepRow
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