pub struct QueryPlan<'a, C: QueryContext> { /* private fields */ }Implementations§
Source§impl<'a, C> QueryPlan<'a, C>where
C: QueryContext,
C::Query: Filterable<Entity = C::Model>,
C::Sort: Sortable<Entity = C::Model>,
impl<'a, C> QueryPlan<'a, C>where
C: QueryContext,
C::Query: Filterable<Entity = C::Model>,
C::Sort: Sortable<Entity = C::Model>,
Auto Trait Implementations§
impl<'a, C> Freeze for QueryPlan<'a, C>
impl<'a, C> RefUnwindSafe for QueryPlan<'a, C>where
<C as QueryContext>::Query: RefUnwindSafe,
<C as QueryContext>::Join: RefUnwindSafe,
<C as QueryContext>::Sort: RefUnwindSafe,
impl<'a, C> Send for QueryPlan<'a, C>
impl<'a, C> Sync for QueryPlan<'a, C>
impl<'a, C> Unpin for QueryPlan<'a, C>where
<C as QueryContext>::Query: Unpin,
<C as QueryContext>::Join: Unpin,
<C as QueryContext>::Sort: Unpin,
impl<'a, C> UnwindSafe for QueryPlan<'a, C>where
<C as QueryContext>::Query: UnwindSafe,
<C as QueryContext>::Join: UnwindSafe,
<C as QueryContext>::Sort: 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> 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