pub struct MessageMetric {
pub id: MetricId,
pub timestamp: Option<u64>,
pub value: Option<MetricValue>,
pub properties: Option<PropertySet>,
}
Expand description
A metric from a message
Fields§
§id: MetricId
The unique identifier of the metric
timestamp: Option<u64>
§value: Option<MetricValue>
§properties: Option<PropertySet>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for MessageMetric
impl RefUnwindSafe for MessageMetric
impl Send for MessageMetric
impl Sync for MessageMetric
impl Unpin for MessageMetric
impl UnwindSafe for MessageMetric
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