pub struct Op<T, A, U, O> { /* private fields */ }
Trait Implementations§
Source§impl<T, A, O> Predicate for Op<T, A, Bind, O>
impl<T, A, O> Predicate for Op<T, A, Bind, O>
fn write_predicate(&self, sql: &mut String)
Source§impl<T, T2, A, O> Predicate for Op<T, A, Field<T2, A>, O>
impl<T, T2, A, O> Predicate for Op<T, A, Field<T2, A>, O>
fn write_predicate(&self, sql: &mut String)
Source§impl<T, A, U, O> Predicate for Op<T, A, U, O>
impl<T, A, U, O> Predicate for Op<T, A, U, O>
fn write_predicate(&self, sql: &mut String)
impl<T, A, U: CheckedSql, O> CheckedSql for Op<T, A, U, O>
Auto Trait Implementations§
impl<T, A, U, O> Freeze for Op<T, A, U, O>where
U: Freeze,
impl<T, A, U, O> RefUnwindSafe for Op<T, A, U, O>
impl<T, A, U, O> Send for Op<T, A, U, O>
impl<T, A, U, O> Sync for Op<T, A, U, O>
impl<T, A, U, O> Unpin for Op<T, A, U, O>
impl<T, A, U, O> UnwindSafe for Op<T, A, U, O>
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> 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 moreSource§impl<T> Query for T
impl<T> Query for T
Source§fn select(self) -> SelectStatement<Self, WildCard>where
Self: Selectable,
fn select(self) -> SelectStatement<Self, WildCard>where
Self: Selectable,
Examples Read more
Source§fn query<Q>(self, query: Q) -> SelectStatement<Self, Q>where
Self: Selectable,
Q: WriteQueryable,
fn query<Q>(self, query: Q) -> SelectStatement<Self, Q>where
Self: Selectable,
Q: WriteQueryable,
Examples Read more