pub struct DataQuery {
pub id: String,
pub timeframe: Timeframe,
pub start: Option<i64>,
pub end: Option<i64>,
pub limit: Option<usize>,
}Expand description
Query specification for loading data
Fields§
§id: StringID to query
timeframe: TimeframeTimeframe of the data
start: Option<i64>Start timestamp (Unix seconds), inclusive
end: Option<i64>End timestamp (Unix seconds), inclusive
limit: Option<usize>Maximum number of rows to return
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DataQuery
impl RefUnwindSafe for DataQuery
impl Send for DataQuery
impl Sync for DataQuery
impl Unpin for DataQuery
impl UnsafeUnpin for DataQuery
impl UnwindSafe for DataQuery
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