pub struct TemporalResult {
pub points: Vec<(DateTime<Utc>, f32)>,
pub raw_count: usize,
}Expand description
Result of a temporal query.
Fields§
§points: Vec<(DateTime<Utc>, f32)>Data points: (timestamp, value).
raw_count: usizeNumber of raw points before aggregation.
Trait Implementations§
Source§impl Clone for TemporalResult
impl Clone for TemporalResult
Source§fn clone(&self) -> TemporalResult
fn clone(&self) -> TemporalResult
Returns a duplicate of the value. Read more
1.0.0 · 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 TemporalResult
impl Debug for TemporalResult
Source§impl<'de> Deserialize<'de> for TemporalResult
impl<'de> Deserialize<'de> for TemporalResult
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 TemporalResult
impl RefUnwindSafe for TemporalResult
impl Send for TemporalResult
impl Sync for TemporalResult
impl Unpin for TemporalResult
impl UnsafeUnpin for TemporalResult
impl UnwindSafe for TemporalResult
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