pub struct CommunityAnalysis {
pub communities: Vec<Community>,
pub modularity: f64,
pub stats: CommunityStats,
}Fields§
§communities: Vec<Community>§modularity: f64§stats: CommunityStatsTrait Implementations§
Source§impl Clone for CommunityAnalysis
impl Clone for CommunityAnalysis
Source§fn clone(&self) -> CommunityAnalysis
fn clone(&self) -> CommunityAnalysis
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 CommunityAnalysis
impl Debug for CommunityAnalysis
Source§impl<'de> Deserialize<'de> for CommunityAnalysis
impl<'de> Deserialize<'de> for CommunityAnalysis
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
Auto Trait Implementations§
impl Freeze for CommunityAnalysis
impl RefUnwindSafe for CommunityAnalysis
impl Send for CommunityAnalysis
impl Sync for CommunityAnalysis
impl Unpin for CommunityAnalysis
impl UnsafeUnpin for CommunityAnalysis
impl UnwindSafe for CommunityAnalysis
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