pub struct CommunityConnectivity {
pub source_community_id: String,
pub target_community_id: String,
pub connection_strength: f64,
pub shortest_path_length: Option<usize>,
pub number_of_connecting_paths: usize,
}
Expand description
Represents connectivity information between two network communities
Fields§
§source_community_id: String
§target_community_id: String
§connection_strength: f64
§shortest_path_length: Option<usize>
§number_of_connecting_paths: usize
Trait Implementations§
source§impl Clone for CommunityConnectivity
impl Clone for CommunityConnectivity
source§fn clone(&self) -> CommunityConnectivity
fn clone(&self) -> CommunityConnectivity
Returns a copy 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 CommunityConnectivity
impl Debug for CommunityConnectivity
source§impl<'de> Deserialize<'de> for CommunityConnectivity
impl<'de> Deserialize<'de> for CommunityConnectivity
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 PartialEq for CommunityConnectivity
impl PartialEq for CommunityConnectivity
source§impl Serialize for CommunityConnectivity
impl Serialize for CommunityConnectivity
impl StructuralPartialEq for CommunityConnectivity
Auto Trait Implementations§
impl Freeze for CommunityConnectivity
impl RefUnwindSafe for CommunityConnectivity
impl Send for CommunityConnectivity
impl Sync for CommunityConnectivity
impl Unpin for CommunityConnectivity
impl UnwindSafe for CommunityConnectivity
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)