pub struct Serie {
pub namespace: MetricNamespace,
pub metric: String,
pub points: Vec<(u64, f64)>,
pub tags: Vec<Tag>,
pub common: bool,
pub _type: MetricType,
pub interval: u64,
}Fields§
§namespace: MetricNamespace§metric: String§points: Vec<(u64, f64)>§common: bool§_type: MetricType§interval: u64Trait Implementations§
Auto Trait Implementations§
impl Freeze for Serie
impl RefUnwindSafe for Serie
impl Send for Serie
impl Sync for Serie
impl Unpin for Serie
impl UnsafeUnpin for Serie
impl UnwindSafe for Serie
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