pub struct NamedMetricValue {
pub name: String,
pub value: MetricValue,
}Expand description
Named aggregate output.
Fields§
§name: StringMetric name copied from the plan.
value: MetricValueCalculated value.
Trait Implementations§
Source§impl Clone for NamedMetricValue
impl Clone for NamedMetricValue
Source§fn clone(&self) -> NamedMetricValue
fn clone(&self) -> NamedMetricValue
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 NamedMetricValue
impl Debug for NamedMetricValue
impl Eq for NamedMetricValue
Source§impl PartialEq for NamedMetricValue
impl PartialEq for NamedMetricValue
impl StructuralPartialEq for NamedMetricValue
Auto Trait Implementations§
impl Freeze for NamedMetricValue
impl RefUnwindSafe for NamedMetricValue
impl Send for NamedMetricValue
impl Sync for NamedMetricValue
impl Unpin for NamedMetricValue
impl UnsafeUnpin for NamedMetricValue
impl UnwindSafe for NamedMetricValue
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