pub struct StrettoGraph {
pub compatibility: Graph<StrettoEntry, StrettoCompatibility>,
pub couples: Vec<StrettoCouple>,
pub rejections: Vec<StrettoRejection>,
pub components: Vec<Vec<usize>>,
pub clusters: Vec<StrettoCluster>,
pub chain_graph: Graph<usize, usize>,
pub chains: Vec<StrettoChain>,
pub provenance: Vec<String>,
}Expand description
Complete bounded stretto compatibility result.
Fields§
§compatibility: Graph<StrettoEntry, StrettoCompatibility>Shared undirected graph whose node labels are materialized entries.
couples: Vec<StrettoCouple>Every compatible graph edge as a named couple.
rejections: Vec<StrettoRejection>Rejected candidate pairs with rule evidence.
components: Vec<Vec<usize>>Coarse connected components from the shared graph owner.
clusters: Vec<StrettoCluster>Maximal pairwise-compatible cliques.
chain_graph: Graph<usize, usize>Directed cluster-overlap graph; edge weights are overlap lengths.
chains: Vec<StrettoChain>Longest bounded simple cluster chains.
provenance: Vec<String>Explicit analysis provenance.
Trait Implementations§
Source§impl Clone for StrettoGraph
impl Clone for StrettoGraph
Source§fn clone(&self) -> StrettoGraph
fn clone(&self) -> StrettoGraph
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 StrettoGraph
impl Debug for StrettoGraph
Source§impl PartialEq for StrettoGraph
impl PartialEq for StrettoGraph
impl StructuralPartialEq for StrettoGraph
Auto Trait Implementations§
impl Freeze for StrettoGraph
impl RefUnwindSafe for StrettoGraph
impl Send for StrettoGraph
impl Sync for StrettoGraph
impl Unpin for StrettoGraph
impl UnsafeUnpin for StrettoGraph
impl UnwindSafe for StrettoGraph
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more