pub struct QueryTimeRange {
pub min_time: String,
pub max_time: String,
}
Expand description
Query params for requests that can take in a time range.
Fields§
§min_time: String
ISO 8601 timestamp or relative time (-3 hour) minimum time range
max_time: String
ISO 8601 timestamp or relative time (-3 hour) maximum time range
Trait Implementations§
Source§impl Clone for QueryTimeRange
impl Clone for QueryTimeRange
Source§fn clone(&self) -> QueryTimeRange
fn clone(&self) -> QueryTimeRange
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 QueryTimeRange
impl Debug for QueryTimeRange
Auto Trait Implementations§
impl Freeze for QueryTimeRange
impl RefUnwindSafe for QueryTimeRange
impl Send for QueryTimeRange
impl Sync for QueryTimeRange
impl Unpin for QueryTimeRange
impl UnwindSafe for QueryTimeRange
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