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