pub struct FloatNullableFilter {
pub equals: Option<f64>,
pub not: Option<Box<FloatNullableFilter>>,
pub in_list: Option<Vec<f64>>,
pub not_in: Option<Vec<f64>>,
pub lt: Option<f64>,
pub lte: Option<f64>,
pub gt: Option<f64>,
pub gte: Option<f64>,
pub is_null: Option<bool>,
}Expand description
Filter for nullable Float columns.
Fields§
§equals: Option<f64>column = value
not: Option<Box<FloatNullableFilter>>Negation.
in_list: Option<Vec<f64>>column IN (...)
not_in: Option<Vec<f64>>column NOT IN (...)
lt: Option<f64>column < value
lte: Option<f64>column <= value
gt: Option<f64>column > value
gte: Option<f64>column >= value
is_null: Option<bool>IS NULL / IS NOT NULL.
Trait Implementations§
Source§impl Clone for FloatNullableFilter
impl Clone for FloatNullableFilter
Source§fn clone(&self) -> FloatNullableFilter
fn clone(&self) -> FloatNullableFilter
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 FloatNullableFilter
impl Debug for FloatNullableFilter
Source§impl Default for FloatNullableFilter
impl Default for FloatNullableFilter
Source§fn default() -> FloatNullableFilter
fn default() -> FloatNullableFilter
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FloatNullableFilter
impl<'de> Deserialize<'de> for FloatNullableFilter
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 FloatNullableFilter
impl PartialEq for FloatNullableFilter
Source§fn eq(&self, other: &FloatNullableFilter) -> bool
fn eq(&self, other: &FloatNullableFilter) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl ScalarFilter for FloatNullableFilter
impl ScalarFilter for FloatNullableFilter
Source§impl Serialize for FloatNullableFilter
impl Serialize for FloatNullableFilter
impl StructuralPartialEq for FloatNullableFilter
Auto Trait Implementations§
impl Freeze for FloatNullableFilter
impl RefUnwindSafe for FloatNullableFilter
impl Send for FloatNullableFilter
impl Sync for FloatNullableFilter
impl Unpin for FloatNullableFilter
impl UnsafeUnpin for FloatNullableFilter
impl UnwindSafe for FloatNullableFilter
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