pub struct CompoundSubgraph {
pub primary: String,
pub anchors: Vec<CompoundAnchor>,
pub omitted_anchors: Vec<CompoundOmittedAnchor>,
pub coverage: f64,
pub missing_terms: Vec<String>,
}Fields§
§primary: String§anchors: Vec<CompoundAnchor>§omitted_anchors: Vec<CompoundOmittedAnchor>§coverage: f64§missing_terms: Vec<String>Trait Implementations§
Source§impl Clone for CompoundSubgraph
impl Clone for CompoundSubgraph
Source§fn clone(&self) -> CompoundSubgraph
fn clone(&self) -> CompoundSubgraph
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 CompoundSubgraph
impl Debug for CompoundSubgraph
Source§impl PartialEq for CompoundSubgraph
impl PartialEq for CompoundSubgraph
Source§fn eq(&self, other: &CompoundSubgraph) -> bool
fn eq(&self, other: &CompoundSubgraph) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CompoundSubgraph
impl Serialize for CompoundSubgraph
impl StructuralPartialEq for CompoundSubgraph
Auto Trait Implementations§
impl Freeze for CompoundSubgraph
impl RefUnwindSafe for CompoundSubgraph
impl Send for CompoundSubgraph
impl Sync for CompoundSubgraph
impl Unpin for CompoundSubgraph
impl UnsafeUnpin for CompoundSubgraph
impl UnwindSafe for CompoundSubgraph
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