pub struct AgentEfficiencyProviderMetric {
pub metric: AgentEfficiencyProviderMetricKind,
pub candidate_median: f64,
pub baseline_median: f64,
pub candidate_maximum: f64,
pub baseline_maximum: f64,
pub causal_attribution: bool,
}Expand description
Descriptive-only candidate and baseline provider counter.
Fields§
§metric: AgentEfficiencyProviderMetricKindProvider counter represented by this row.
candidate_median: f64Candidate median reported by the provider.
baseline_median: f64Baseline median reported by the provider.
candidate_maximum: f64Candidate observed maximum reported by the provider.
baseline_maximum: f64Baseline observed maximum reported by the provider.
causal_attribution: boolAlways false because provider counters do not prove navigation causality.
Trait Implementations§
Source§impl Clone for AgentEfficiencyProviderMetric
impl Clone for AgentEfficiencyProviderMetric
Source§fn clone(&self) -> AgentEfficiencyProviderMetric
fn clone(&self) -> AgentEfficiencyProviderMetric
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<'de> Deserialize<'de> for AgentEfficiencyProviderMetric
impl<'de> Deserialize<'de> for AgentEfficiencyProviderMetric
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for AgentEfficiencyProviderMetric
impl PartialEq for AgentEfficiencyProviderMetric
Source§fn eq(&self, other: &AgentEfficiencyProviderMetric) -> bool
fn eq(&self, other: &AgentEfficiencyProviderMetric) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AgentEfficiencyProviderMetric
Auto Trait Implementations§
impl Freeze for AgentEfficiencyProviderMetric
impl RefUnwindSafe for AgentEfficiencyProviderMetric
impl Send for AgentEfficiencyProviderMetric
impl Sync for AgentEfficiencyProviderMetric
impl Unpin for AgentEfficiencyProviderMetric
impl UnwindSafe for AgentEfficiencyProviderMetric
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