pub struct NetworkStatistics {
pub total_nodes: usize,
pub total_tuples: usize,
pub active_tuples: usize,
pub node_type_counts: FxHashMap<String, usize>,
pub memory_usage_estimate: usize,
}Fields§
§total_nodes: usize§total_tuples: usize§active_tuples: usize§node_type_counts: FxHashMap<String, usize>§memory_usage_estimate: usizeTrait Implementations§
Auto Trait Implementations§
impl Freeze for NetworkStatistics
impl RefUnwindSafe for NetworkStatistics
impl Send for NetworkStatistics
impl Sync for NetworkStatistics
impl Unpin for NetworkStatistics
impl UnsafeUnpin for NetworkStatistics
impl UnwindSafe for NetworkStatistics
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