pub struct CommunityMetrics {
pub size: usize,
pub density: f64,
pub cohesion: f64,
pub coupling: f64,
pub cross_community_edges: usize,
}Expand description
Quantitative properties of one detected community.
Fields§
§size: usizeNumber of member nodes.
density: f64Internal edges divided by possible directed edges.
cohesion: f64Internal accepted edge weight.
coupling: f64Accepted edge weight crossing the community boundary.
cross_community_edges: usizeNumber of accepted cross-community edges.
Trait Implementations§
Source§impl Clone for CommunityMetrics
impl Clone for CommunityMetrics
Source§fn clone(&self) -> CommunityMetrics
fn clone(&self) -> CommunityMetrics
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 CommunityMetrics
impl Debug for CommunityMetrics
Source§impl<'de> Deserialize<'de> for CommunityMetrics
impl<'de> Deserialize<'de> for CommunityMetrics
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 JsonSchema for CommunityMetrics
impl JsonSchema for CommunityMetrics
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for CommunityMetrics
impl PartialEq for CommunityMetrics
Source§impl Serialize for CommunityMetrics
impl Serialize for CommunityMetrics
impl StructuralPartialEq for CommunityMetrics
Auto Trait Implementations§
impl Freeze for CommunityMetrics
impl RefUnwindSafe for CommunityMetrics
impl Send for CommunityMetrics
impl Sync for CommunityMetrics
impl Unpin for CommunityMetrics
impl UnsafeUnpin for CommunityMetrics
impl UnwindSafe for CommunityMetrics
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