pub struct WeightedBiadjacencyResult {
pub graph: Graph,
pub types: Vec<bool>,
pub weights: Vec<f64>,
}Expand description
Result of weighted_biadjacency.
Fields§
§graph: GraphThe constructed bipartite graph on n1 + n2 vertices.
types: Vec<bool>Per-vertex type: false = partition 1 (rows), true = partition 2 (columns).
weights: Vec<f64>Per-edge weight corresponding to the matrix entry that produced it.
Trait Implementations§
Source§impl Clone for WeightedBiadjacencyResult
impl Clone for WeightedBiadjacencyResult
Source§fn clone(&self) -> WeightedBiadjacencyResult
fn clone(&self) -> WeightedBiadjacencyResult
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 WeightedBiadjacencyResult
impl !RefUnwindSafe for WeightedBiadjacencyResult
impl Send for WeightedBiadjacencyResult
impl !Sync for WeightedBiadjacencyResult
impl Unpin for WeightedBiadjacencyResult
impl UnsafeUnpin for WeightedBiadjacencyResult
impl UnwindSafe for WeightedBiadjacencyResult
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