pub struct AdvancedInsights {
pub top_k_set: TopKSetResult,
pub coverage_set: CoverageSetResult,
pub k_paths: KPathsResult,
pub cycle_break: CycleBreakResult,
pub parallel_cut: ParallelCutResult,
pub parallel_gain: ParallelGainResult,
pub config: AdvancedInsightsConfig,
pub usage_hints: Vec<String>,
}Expand description
Aggregates all six advanced insight types.
Fields§
§top_k_set: TopKSetResult§coverage_set: CoverageSetResult§k_paths: KPathsResult§cycle_break: CycleBreakResult§parallel_cut: ParallelCutResult§parallel_gain: ParallelGainResult§config: AdvancedInsightsConfig§usage_hints: Vec<String>Trait Implementations§
Source§impl Clone for AdvancedInsights
impl Clone for AdvancedInsights
Source§fn clone(&self) -> AdvancedInsights
fn clone(&self) -> AdvancedInsights
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 AdvancedInsights
impl Debug for AdvancedInsights
Auto Trait Implementations§
impl Freeze for AdvancedInsights
impl RefUnwindSafe for AdvancedInsights
impl Send for AdvancedInsights
impl Sync for AdvancedInsights
impl Unpin for AdvancedInsights
impl UnsafeUnpin for AdvancedInsights
impl UnwindSafe for AdvancedInsights
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