pub struct RangeBoundsTs {
pub gt: Option<Timestamp>,
pub gte: Option<Timestamp>,
pub lt: Option<Timestamp>,
pub lte: Option<Timestamp>,
}
Expand description
Specification of a date interval for use in filtering results by time.
Fields§
§gt: Option<Timestamp>
Minimum value to filter by (exclusive)
gte: Option<Timestamp>
Minimum value to filter by (inclusive)
lt: Option<Timestamp>
Maximum value to filter by (exclusive)
lte: Option<Timestamp>
Maximum value to filter by (inclusive)
Trait Implementations§
Source§impl Clone for RangeBoundsTs
impl Clone for RangeBoundsTs
Source§fn clone(&self) -> RangeBoundsTs
fn clone(&self) -> RangeBoundsTs
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 RangeBoundsTs
impl Debug for RangeBoundsTs
Source§impl Default for RangeBoundsTs
impl Default for RangeBoundsTs
Source§fn default() -> RangeBoundsTs
fn default() -> RangeBoundsTs
Returns the “default value” for a type. Read more
Source§impl Serialize for RangeBoundsTs
impl Serialize for RangeBoundsTs
impl Copy for RangeBoundsTs
Auto Trait Implementations§
impl Freeze for RangeBoundsTs
impl RefUnwindSafe for RangeBoundsTs
impl Send for RangeBoundsTs
impl Sync for RangeBoundsTs
impl Unpin for RangeBoundsTs
impl UnwindSafe for RangeBoundsTs
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