pub struct QueryBuilder<'a, C: QueryContext> { /* private fields */ }Implementations§
Source§impl<'a, C> QueryBuilder<'a, C>where
C: QueryContext,
impl<'a, C> QueryBuilder<'a, C>where
C: QueryContext,
Source§impl<'a, C> QueryBuilder<'a, C>where
C: QueryContext,
impl<'a, C> QueryBuilder<'a, C>where
C: QueryContext,
Sourcepub fn from_dto<D>(dto: &DtoFilter<D>) -> Selfwhere
D: WebQueryModel + Bind<C>,
pub fn from_dto<D>(dto: &DtoFilter<D>) -> Selfwhere
D: WebQueryModel + Bind<C>,
Baut einen QueryBuilder aus einem DtoFilter.
Auto Trait Implementations§
impl<'a, C> Freeze for QueryBuilder<'a, C>
impl<'a, C> RefUnwindSafe for QueryBuilder<'a, C>where
<C as QueryContext>::Query: RefUnwindSafe,
<C as QueryContext>::Join: RefUnwindSafe,
<C as QueryContext>::Sort: RefUnwindSafe,
impl<'a, C> Send for QueryBuilder<'a, C>
impl<'a, C> Sync for QueryBuilder<'a, C>
impl<'a, C> Unpin for QueryBuilder<'a, C>where
<C as QueryContext>::Query: Unpin,
<C as QueryContext>::Join: Unpin,
<C as QueryContext>::Sort: Unpin,
impl<'a, C> UnwindSafe for QueryBuilder<'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