pub struct NeighborhoodRankingGate {
pub status: String,
pub ranked_output_default: bool,
pub default_order: String,
pub default_change_gate: String,
pub required_workloads: Vec<String>,
pub required_metrics: Vec<String>,
pub max_duration_regression_percent: f64,
pub min_handle_coverage_pct: f64,
pub min_duplicate_name_precision: f64,
pub min_top_community_stability: f64,
pub diagnostics: Vec<String>,
}Fields§
§status: String§ranked_output_default: bool§default_order: String§default_change_gate: String§required_workloads: Vec<String>§required_metrics: Vec<String>§max_duration_regression_percent: f64§min_handle_coverage_pct: f64§min_duplicate_name_precision: f64§min_top_community_stability: f64§diagnostics: Vec<String>Trait Implementations§
Source§impl Clone for NeighborhoodRankingGate
impl Clone for NeighborhoodRankingGate
Source§fn clone(&self) -> NeighborhoodRankingGate
fn clone(&self) -> NeighborhoodRankingGate
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 NeighborhoodRankingGate
impl Debug for NeighborhoodRankingGate
Source§impl PartialEq for NeighborhoodRankingGate
impl PartialEq for NeighborhoodRankingGate
Source§fn eq(&self, other: &NeighborhoodRankingGate) -> bool
fn eq(&self, other: &NeighborhoodRankingGate) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for NeighborhoodRankingGate
impl Serialize for NeighborhoodRankingGate
impl StructuralPartialEq for NeighborhoodRankingGate
Auto Trait Implementations§
impl Freeze for NeighborhoodRankingGate
impl RefUnwindSafe for NeighborhoodRankingGate
impl Send for NeighborhoodRankingGate
impl Sync for NeighborhoodRankingGate
impl Unpin for NeighborhoodRankingGate
impl UnsafeUnpin for NeighborhoodRankingGate
impl UnwindSafe for NeighborhoodRankingGate
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