pub struct NumericFilter {
pub eq: Option<i32>,
pub gt: Option<i32>,
pub gte: Option<i32>,
pub lt: Option<i32>,
pub lte: Option<i32>,
}Fields§
§eq: Option<i32>§gt: Option<i32>§gte: Option<i32>§lt: Option<i32>§lte: Option<i32>Trait Implementations§
Source§impl Clone for NumericFilter
impl Clone for NumericFilter
Source§fn clone(&self) -> NumericFilter
fn clone(&self) -> NumericFilter
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 NumericFilter
impl Debug for NumericFilter
Source§impl Default for NumericFilter
impl Default for NumericFilter
Source§fn default() -> NumericFilter
fn default() -> NumericFilter
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for NumericFilter
impl RefUnwindSafe for NumericFilter
impl Send for NumericFilter
impl Sync for NumericFilter
impl Unpin for NumericFilter
impl UnsafeUnpin for NumericFilter
impl UnwindSafe for NumericFilter
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