pub enum SelectColumnImpl<'until_build> {
SQLite(SelectColumnData<'until_build>),
MySQL(SelectColumnData<'until_build>),
Postgres(SelectColumnData<'until_build>),
}
Expand description
Representation of the column selector and implementation of the SelectColumn trait.
Should only be constructed via DBImpl::select_column.
Variants§
SQLite(SelectColumnData<'until_build>)
SQLite representation of a column selector expression.
MySQL(SelectColumnData<'until_build>)
MySQL representation of a column selector expression.
Postgres(SelectColumnData<'until_build>)
Postgres representation of a column selector expression.
Trait Implementations§
Source§impl<'until_build> Clone for SelectColumnImpl<'until_build>
impl<'until_build> Clone for SelectColumnImpl<'until_build>
Source§fn clone(&self) -> SelectColumnImpl<'until_build>
fn clone(&self) -> SelectColumnImpl<'until_build>
Returns a duplicate 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<'until_build> Debug for SelectColumnImpl<'until_build>
impl<'until_build> Debug for SelectColumnImpl<'until_build>
Source§impl SelectColumn for SelectColumnImpl<'_>
impl SelectColumn for SelectColumnImpl<'_>
Auto Trait Implementations§
impl<'until_build> Freeze for SelectColumnImpl<'until_build>
impl<'until_build> RefUnwindSafe for SelectColumnImpl<'until_build>
impl<'until_build> Send for SelectColumnImpl<'until_build>
impl<'until_build> Sync for SelectColumnImpl<'until_build>
impl<'until_build> Unpin for SelectColumnImpl<'until_build>
impl<'until_build> UnwindSafe for SelectColumnImpl<'until_build>
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