pub struct ImpactNetwork {
pub nodes: Vec<NetworkNode>,
pub edges: Vec<NetworkEdge>,
pub clusters: Vec<BeadCluster>,
pub stats: NetworkStats,
}Fields§
§nodes: Vec<NetworkNode>§edges: Vec<NetworkEdge>§clusters: Vec<BeadCluster>§stats: NetworkStatsTrait Implementations§
Source§impl Clone for ImpactNetwork
impl Clone for ImpactNetwork
Source§fn clone(&self) -> ImpactNetwork
fn clone(&self) -> ImpactNetwork
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 ImpactNetwork
impl Debug for ImpactNetwork
Auto Trait Implementations§
impl Freeze for ImpactNetwork
impl RefUnwindSafe for ImpactNetwork
impl Send for ImpactNetwork
impl Sync for ImpactNetwork
impl Unpin for ImpactNetwork
impl UnsafeUnpin for ImpactNetwork
impl UnwindSafe for ImpactNetwork
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