pub struct ReportPoint {
pub x: String,
pub y: f64,
}Expand description
One day-bucket from a flat (non-stacked) report’s data array.
Fields§
§x: String§y: f64Trait Implementations§
Source§impl Clone for ReportPoint
impl Clone for ReportPoint
Source§fn clone(&self) -> ReportPoint
fn clone(&self) -> ReportPoint
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 ReportPoint
impl Debug for ReportPoint
Source§impl<'de> Deserialize<'de> for ReportPoint
impl<'de> Deserialize<'de> for ReportPoint
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
Auto Trait Implementations§
impl Freeze for ReportPoint
impl RefUnwindSafe for ReportPoint
impl Send for ReportPoint
impl Sync for ReportPoint
impl Unpin for ReportPoint
impl UnsafeUnpin for ReportPoint
impl UnwindSafe for ReportPoint
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