pub struct IntFilter {
pub equals: Option<i32>,
pub not: Option<i32>,
pub gt: Option<i32>,
pub gte: Option<i32>,
pub lt: Option<i32>,
pub lte: Option<i32>,
pub in: Option<Vec<i32>>,
pub not_in: Option<Vec<i32>>,
}Expand description
Filter operations for i32 fields.
Fields§
§equals: Option<i32>§not: Option<i32>§gt: Option<i32>§gte: Option<i32>§lt: Option<i32>§lte: Option<i32>§in: Option<Vec<i32>>§not_in: Option<Vec<i32>>Trait Implementations§
Auto Trait Implementations§
impl Freeze for IntFilter
impl RefUnwindSafe for IntFilter
impl Send for IntFilter
impl Sync for IntFilter
impl Unpin for IntFilter
impl UnsafeUnpin for IntFilter
impl UnwindSafe for IntFilter
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more