pub struct PrepGraphAssemblySummary {Show 14 fields
pub node_count: usize,
pub edge_count: usize,
pub degree_min: usize,
pub degree_max: usize,
pub degree_mean: f64,
pub degree_p95: f64,
pub fill_ratio: f64,
pub connected_component_count: usize,
pub ordering_bandwidth_before: usize,
pub ordering_bandwidth_after: usize,
pub ordering_reduction_ratio: f64,
pub ordering_fingerprint: u64,
pub recommend_ilu0: bool,
pub graph_fingerprint: u64,
}Fields§
§node_count: usize§edge_count: usize§degree_min: usize§degree_max: usize§degree_mean: f64§degree_p95: f64§fill_ratio: f64§connected_component_count: usize§ordering_bandwidth_before: usize§ordering_bandwidth_after: usize§ordering_reduction_ratio: f64§ordering_fingerprint: u64§recommend_ilu0: bool§graph_fingerprint: u64Trait Implementations§
Source§impl Clone for PrepGraphAssemblySummary
impl Clone for PrepGraphAssemblySummary
Source§fn clone(&self) -> PrepGraphAssemblySummary
fn clone(&self) -> PrepGraphAssemblySummary
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 PrepGraphAssemblySummary
impl Debug for PrepGraphAssemblySummary
Source§impl<'de> Deserialize<'de> for PrepGraphAssemblySummary
impl<'de> Deserialize<'de> for PrepGraphAssemblySummary
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for PrepGraphAssemblySummary
impl PartialEq for PrepGraphAssemblySummary
Source§impl Serialize for PrepGraphAssemblySummary
impl Serialize for PrepGraphAssemblySummary
impl StructuralPartialEq for PrepGraphAssemblySummary
Auto Trait Implementations§
impl Freeze for PrepGraphAssemblySummary
impl RefUnwindSafe for PrepGraphAssemblySummary
impl Send for PrepGraphAssemblySummary
impl Sync for PrepGraphAssemblySummary
impl Unpin for PrepGraphAssemblySummary
impl UnsafeUnpin for PrepGraphAssemblySummary
impl UnwindSafe for PrepGraphAssemblySummary
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