Struct git_perf::data::MeasurementData
source · pub struct MeasurementData {
pub epoch: u32,
pub name: String,
pub timestamp: f64,
pub val: f64,
pub key_values: HashMap<String, String>,
}
Fields§
§epoch: u32
§name: String
§timestamp: f64
§val: f64
§key_values: HashMap<String, String>
Trait Implementations§
source§impl Debug for MeasurementData
impl Debug for MeasurementData
source§impl PartialEq for MeasurementData
impl PartialEq for MeasurementData
source§fn eq(&self, other: &MeasurementData) -> bool
fn eq(&self, other: &MeasurementData) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for MeasurementData
Auto Trait Implementations§
impl RefUnwindSafe for MeasurementData
impl Send for MeasurementData
impl Sync for MeasurementData
impl Unpin for MeasurementData
impl UnwindSafe for MeasurementData
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
§impl<S, T> Cast<T> for Swhere
T: Conv<S>,
impl<S, T> Cast<T> for Swhere
T: Conv<S>,
§impl<S, T> CastFloat<T> for Swhere
T: ConvFloat<S>,
impl<S, T> CastFloat<T> for Swhere
T: ConvFloat<S>,
§fn cast_trunc(self) -> T
fn cast_trunc(self) -> T
Cast to integer, truncating Read more
§fn cast_nearest(self) -> T
fn cast_nearest(self) -> T
Cast to the nearest integer Read more
§fn cast_floor(self) -> T
fn cast_floor(self) -> T
Cast the floor to an integer Read more
§fn try_cast_trunc(self) -> Result<T, Error>
fn try_cast_trunc(self) -> Result<T, Error>
Try converting to integer with truncation Read more
§fn try_cast_nearest(self) -> Result<T, Error>
fn try_cast_nearest(self) -> Result<T, Error>
Try converting to the nearest integer Read more
§fn try_cast_floor(self) -> Result<T, Error>
fn try_cast_floor(self) -> Result<T, Error>
Try converting the floor to an integer Read more
§fn try_cast_ceil(self) -> Result<T, Error>
fn try_cast_ceil(self) -> Result<T, Error>
Try convert the ceiling to an integer Read more