pub struct DataPoint {
pub name: &'static str,
pub timestamp: SystemTime,
pub tags: Vec<(&'static str, String)>,
pub fields: Vec<(&'static str, String)>,
}
Fields§
§name: &'static str
§timestamp: SystemTime
tags are eligible for group-by operations.
fields: Vec<(&'static str, String)>
Implementations§
source§impl DataPoint
impl DataPoint
pub fn new(name: &'static str) -> Self
pub fn add_tag(&mut self, name: &'static str, value: &str) -> &mut Self
pub fn add_field_str(&mut self, name: &'static str, value: &str) -> &mut Self
pub fn add_field_bool(&mut self, name: &'static str, value: bool) -> &mut Self
pub fn add_field_i64(&mut self, name: &'static str, value: i64) -> &mut Self
pub fn add_field_f64(&mut self, name: &'static str, value: f64) -> &mut Self
Trait Implementations§
source§impl From<&CounterPoint> for DataPoint
impl From<&CounterPoint> for DataPoint
source§fn from(counter_point: &CounterPoint) -> Self
fn from(counter_point: &CounterPoint) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for DataPoint
impl RefUnwindSafe for DataPoint
impl Send for DataPoint
impl Sync for DataPoint
impl Unpin for DataPoint
impl UnwindSafe for DataPoint
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more