pub struct ProbeMetricValue {
pub value: f64,
pub unit: Option<String>,
pub statistic: Option<String>,
}Expand description
A numeric metric observed for a named probe.
Fields§
§value: f64§unit: Option<String>§statistic: Option<String>Trait Implementations§
Source§impl Clone for ProbeMetricValue
impl Clone for ProbeMetricValue
Source§fn clone(&self) -> ProbeMetricValue
fn clone(&self) -> ProbeMetricValue
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 ProbeMetricValue
impl Debug for ProbeMetricValue
Source§impl<'de> Deserialize<'de> for ProbeMetricValue
impl<'de> Deserialize<'de> for ProbeMetricValue
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 JsonSchema for ProbeMetricValue
impl JsonSchema for ProbeMetricValue
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for ProbeMetricValue
impl PartialEq for ProbeMetricValue
Source§fn eq(&self, other: &ProbeMetricValue) -> bool
fn eq(&self, other: &ProbeMetricValue) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ProbeMetricValue
impl Serialize for ProbeMetricValue
impl StructuralPartialEq for ProbeMetricValue
Auto Trait Implementations§
impl Freeze for ProbeMetricValue
impl RefUnwindSafe for ProbeMetricValue
impl Send for ProbeMetricValue
impl Sync for ProbeMetricValue
impl Unpin for ProbeMetricValue
impl UnsafeUnpin for ProbeMetricValue
impl UnwindSafe for ProbeMetricValue
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