pub struct NetworkStats {
pub n_neurons: usize,
pub n_connections: usize,
pub n_gap_junctions: usize,
pub n_ephaptic: usize,
pub avg_in_degree: f64,
pub avg_out_degree: f64,
}Expand description
Network connectivity statistics.
Fields§
§n_neurons: usizeNumber of neurons.
n_connections: usizeNumber of chemical synapses.
n_gap_junctions: usizeNumber of gap junctions.
n_ephaptic: usizeNumber of ephaptic couplings.
avg_in_degree: f64Average in-degree.
avg_out_degree: f64Average out-degree.
Trait Implementations§
Source§impl Clone for NetworkStats
impl Clone for NetworkStats
Source§fn clone(&self) -> NetworkStats
fn clone(&self) -> NetworkStats
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 NetworkStats
impl RefUnwindSafe for NetworkStats
impl Send for NetworkStats
impl Sync for NetworkStats
impl Unpin for NetworkStats
impl UnwindSafe for NetworkStats
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