pub struct TimestampFilter {Show 14 fields
pub after: Option<String>,
pub before: Option<String>,
pub equals: Option<String>,
pub is_empty: Option<bool>,
pub is_not_empty: Option<bool>,
pub next_month: Option<HashMap<(), ()>>,
pub next_week: Option<HashMap<(), ()>>,
pub next_year: Option<HashMap<(), ()>>,
pub on_or_after: Option<String>,
pub on_or_before: Option<String>,
pub past_month: Option<HashMap<(), ()>>,
pub past_week: Option<HashMap<(), ()>>,
pub past_year: Option<HashMap<(), ()>>,
pub this_week: Option<HashMap<(), ()>>,
}
Fields§
§after: Option<String>
§before: Option<String>
§equals: Option<String>
§is_empty: Option<bool>
§is_not_empty: Option<bool>
§next_month: Option<HashMap<(), ()>>
§next_week: Option<HashMap<(), ()>>
§next_year: Option<HashMap<(), ()>>
§on_or_after: Option<String>
§on_or_before: Option<String>
§past_month: Option<HashMap<(), ()>>
§past_week: Option<HashMap<(), ()>>
§past_year: Option<HashMap<(), ()>>
§this_week: Option<HashMap<(), ()>>
Trait Implementations§
Source§impl Clone for TimestampFilter
impl Clone for TimestampFilter
Source§fn clone(&self) -> TimestampFilter
fn clone(&self) -> TimestampFilter
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 TimestampFilter
impl Debug for TimestampFilter
Source§impl Default for TimestampFilter
impl Default for TimestampFilter
Source§fn default() -> TimestampFilter
fn default() -> TimestampFilter
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TimestampFilter
impl<'de> Deserialize<'de> for TimestampFilter
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
Source§impl PartialEq for TimestampFilter
impl PartialEq for TimestampFilter
Source§impl Serialize for TimestampFilter
impl Serialize for TimestampFilter
impl Eq for TimestampFilter
impl StructuralPartialEq for TimestampFilter
Auto Trait Implementations§
impl Freeze for TimestampFilter
impl RefUnwindSafe for TimestampFilter
impl Send for TimestampFilter
impl Sync for TimestampFilter
impl Unpin for TimestampFilter
impl UnwindSafe for TimestampFilter
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