pub struct SelectStatement<S, Q> { /* private fields */ }
Implementations§
Source§impl<S: Selectable, Q> SelectStatement<S, Q>
impl<S: Selectable, Q> SelectStatement<S, Q>
Trait Implementations§
Source§impl<S: Clone, Q: Clone> Clone for SelectStatement<S, Q>
impl<S: Clone, Q: Clone> Clone for SelectStatement<S, Q>
Source§fn clone(&self) -> SelectStatement<S, Q>
fn clone(&self) -> SelectStatement<S, Q>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'c, 'out, E, S> Fetch<'c, 'out, E> for SelectStatement<S, WildCard>
impl<'c, 'out, E, S> Fetch<'c, 'out, E> for SelectStatement<S, WildCard>
Source§impl<S, Q> Select for SelectStatement<S, Q>where
S: Selectable,
Q: WriteQueryable,
impl<S, Q> Select for SelectStatement<S, Q>where
S: Selectable,
Q: WriteQueryable,
Source§impl<S, Q> ToSql for SelectStatement<S, Q>where
S: Selectable,
Q: WriteQueryable,
impl<S, Q> ToSql for SelectStatement<S, Q>where
S: Selectable,
Q: WriteQueryable,
fn write_sql_unchecked(&self, sql: &mut String)
fn write_sql(&self, sql: &mut String)where
Self: CheckedSql,
fn to_sql_unchecked(&self) -> String
fn to_sql(&self) -> Stringwhere
Self: CheckedSql,
impl<S, Q> CheckedSql for SelectStatement<S, Q>
impl<S: Copy, Q: Copy> Copy for SelectStatement<S, Q>
Auto Trait Implementations§
impl<S, Q> Freeze for SelectStatement<S, Q>
impl<S, Q> RefUnwindSafe for SelectStatement<S, Q>where
S: RefUnwindSafe,
Q: RefUnwindSafe,
impl<S, Q> Send for SelectStatement<S, Q>
impl<S, Q> Sync for SelectStatement<S, Q>
impl<S, Q> Unpin for SelectStatement<S, Q>
impl<S, Q> UnwindSafe for SelectStatement<S, Q>where
S: UnwindSafe,
Q: UnwindSafe,
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<S> Filterable for Swhere
S: Select,
impl<S> Filterable for Swhere
S: Select,
type Fields = <<S as Select>::Selectable as Selectable>::Fields
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