pub struct DyadCensus {
pub mutual: f64,
pub asymmetric: f64,
pub null: f64,
}Expand description
Result of a dyad census on a directed graph.
Fields§
§mutual: f64Number of mutual (reciprocated) dyads.
asymmetric: f64Number of asymmetric (one-way) dyads.
null: f64Number of null (no edge) dyads.
Trait Implementations§
Source§impl Clone for DyadCensus
impl Clone for DyadCensus
Source§fn clone(&self) -> DyadCensus
fn clone(&self) -> DyadCensus
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 DyadCensus
impl Debug for DyadCensus
Source§impl PartialEq for DyadCensus
impl PartialEq for DyadCensus
impl StructuralPartialEq for DyadCensus
Auto Trait Implementations§
impl Freeze for DyadCensus
impl RefUnwindSafe for DyadCensus
impl Send for DyadCensus
impl Sync for DyadCensus
impl Unpin for DyadCensus
impl UnsafeUnpin for DyadCensus
impl UnwindSafe for DyadCensus
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