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