pub struct GraphAnalysis {
pub pagerank: Vec<(i64, f64)>,
pub communities: CommunityResult,
pub num_components: usize,
pub largest_component_size: usize,
}Fields§
§pagerank: Vec<(i64, f64)>§communities: CommunityResult§num_components: usize§largest_component_size: usizeTrait Implementations§
Source§impl Clone for GraphAnalysis
impl Clone for GraphAnalysis
Source§fn clone(&self) -> GraphAnalysis
fn clone(&self) -> GraphAnalysis
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 moreAuto Trait Implementations§
impl Freeze for GraphAnalysis
impl RefUnwindSafe for GraphAnalysis
impl Send for GraphAnalysis
impl Sync for GraphAnalysis
impl Unpin for GraphAnalysis
impl UnsafeUnpin for GraphAnalysis
impl UnwindSafe for GraphAnalysis
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