pub struct CommunityStats {
pub count: usize,
pub avg_size: f64,
pub largest_size: usize,
pub isolated_nodes: usize,
}Fields§
§count: usize§avg_size: f64§largest_size: usize§isolated_nodes: usizeTrait Implementations§
Source§impl Clone for CommunityStats
impl Clone for CommunityStats
Source§fn clone(&self) -> CommunityStats
fn clone(&self) -> CommunityStats
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 CommunityStats
impl Debug for CommunityStats
Source§impl<'de> Deserialize<'de> for CommunityStats
impl<'de> Deserialize<'de> for CommunityStats
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 CommunityStats
impl RefUnwindSafe for CommunityStats
impl Send for CommunityStats
impl Sync for CommunityStats
impl Unpin for CommunityStats
impl UnsafeUnpin for CommunityStats
impl UnwindSafe for CommunityStats
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