pub struct Select<'columns, S, Out> { /* private fields */ }Expand description
Select is used to define what to query from the database for each row.
It defines a set of expressions to evaluate in the database, and then how to turn the results into rust values.
For this reason many rust_query APIs accept values that implement IntoSelect.
Implementations§
Trait Implementations§
Source§impl<'columns, S, Out: 'static> IntoSelect<'columns, S> for Select<'columns, S, Out>
impl<'columns, S, Out: 'static> IntoSelect<'columns, S> for Select<'columns, S, Out>
Auto Trait Implementations§
impl<'columns, S, Out> Freeze for Select<'columns, S, Out>
impl<'columns, S, Out> !RefUnwindSafe for Select<'columns, S, Out>
impl<'columns, S, Out> !Send for Select<'columns, S, Out>
impl<'columns, S, Out> !Sync for Select<'columns, S, Out>
impl<'columns, S, Out> Unpin for Select<'columns, S, Out>where
S: Unpin,
impl<'columns, S, Out> !UnwindSafe for Select<'columns, S, Out>
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