pub struct FilterCol<Entity, Col> { /* private fields */ }Implementations§
Source§impl<Entity, Col> FilterCol<Entity, Col>where
Col: Into<SimpleExpr>,
impl<Entity, Col> FilterCol<Entity, Col>where
Col: Into<SimpleExpr>,
pub fn eq(self, value: Col) -> FilterExpr<Entity>
pub fn neq(self, value: Col) -> FilterExpr<Entity>
pub fn gt(self, value: Col) -> FilterExpr<Entity>
pub fn gte(self, value: Col) -> FilterExpr<Entity>
pub fn lt(self, value: Col) -> FilterExpr<Entity>
pub fn lte(self, value: Col) -> FilterExpr<Entity>
pub fn is_in<I>(self, values: I) -> FilterExpr<Entity>where
I: IntoIterator<Item = Col>,
pub fn is_null(self) -> FilterExpr<Entity>where
Col: IsNullFilterable,
pub fn like<S>(self, like_stm: S) -> FilterExpr<Entity>where
Col: LikeFilterable,
S: IntoLikeExpr,
pub fn not_like<S>(self, like_stm: S) -> FilterExpr<Entity>where
Col: LikeFilterable,
S: IntoLikeExpr,
Trait Implementations§
Auto Trait Implementations§
impl<Entity, Col> Freeze for FilterCol<Entity, Col>
impl<Entity, Col> !RefUnwindSafe for FilterCol<Entity, Col>
impl<Entity, Col> !Send for FilterCol<Entity, Col>
impl<Entity, Col> !Sync for FilterCol<Entity, Col>
impl<Entity, Col> Unpin for FilterCol<Entity, Col>
impl<Entity, Col> UnsafeUnpin for FilterCol<Entity, Col>
impl<Entity, Col> !UnwindSafe for FilterCol<Entity, Col>
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