pub struct Selector<S>where
S: SelectorTrait,{ /* private fields */ }Expand description
A ready-to-execute SELECT query backed by a SelectStatement. The
type parameter S (a SelectorTrait) determines what each row is
decoded into. Build one via
Select::into_model or
Select::into_partial_model, then
call .one(db) / .all(db) / .paginate(db, n).
Implementationsยง
Sourceยงimpl<S> Selector<S>where
S: SelectorTrait,
impl<S> Selector<S>where
S: SelectorTrait,
Sourcepub fn into_statement(self, builder: DbBackend) -> Statement
pub fn into_statement(self, builder: DbBackend) -> Statement
Get the SQL statement
Sourcepub fn one<C>(self, db: &C) -> Result<Option<S::Item>, DbErr>where
C: ConnectionTrait,
pub fn one<C>(self, db: &C) -> Result<Option<S::Item>, DbErr>where
C: ConnectionTrait,
Get an item from the Select query
Trait Implementationsยง
Sourceยงimpl<'db, C, S> PaginatorTrait<'db, C> for Selector<S>where
C: ConnectionTrait,
S: SelectorTrait + 'db,
impl<'db, C, S> PaginatorTrait<'db, C> for Selector<S>where
C: ConnectionTrait,
S: SelectorTrait + 'db,
Auto Trait Implementationsยง
impl<S> Freeze for Selector<S>
impl<S> RefUnwindSafe for Selector<S>where
S: RefUnwindSafe,
impl<S> Send for Selector<S>where
S: Send,
impl<S> Sync for Selector<S>where
S: Sync,
impl<S> Unpin for Selector<S>where
S: Unpin,
impl<S> UnsafeUnpin for Selector<S>
impl<S> UnwindSafe for Selector<S>where
S: UnwindSafe,
Blanket Implementationsยง
impl<T> Allocation for T
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
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