pub struct CountExpr<C: Column>(/* private fields */);Implementations§
Source§impl<C> CountExpr<C>where
C: Column,
impl<C> CountExpr<C>where
C: Column,
pub fn eq<T>(self, value: T) -> HavingPredicate
pub fn ne<T>(self, value: T) -> HavingPredicate
pub fn gt<T>(self, value: T) -> HavingPredicate
pub fn ge<T>(self, value: T) -> HavingPredicate
pub fn lt<T>(self, value: T) -> HavingPredicate
pub fn le<T>(self, value: T) -> HavingPredicate
Trait Implementations§
Source§impl<C> AggregateSelectionExpr for CountExpr<C>where
C: Column,
impl<C> AggregateSelectionExpr for CountExpr<C>where
C: Column,
fn selection(&self) -> AggregateSelection
Source§impl<C> SelectionExpr for CountExpr<C>where
C: Column,
impl<C> SelectionExpr for CountExpr<C>where
C: Column,
impl<C: Copy + Column> Copy for CountExpr<C>
Auto Trait Implementations§
impl<C> Freeze for CountExpr<C>
impl<C> RefUnwindSafe for CountExpr<C>where
C: RefUnwindSafe,
impl<C> Send for CountExpr<C>where
C: Send,
impl<C> Sync for CountExpr<C>where
C: Sync,
impl<C> Unpin for CountExpr<C>where
C: Unpin,
impl<C> UnsafeUnpin for CountExpr<C>
impl<C> UnwindSafe for CountExpr<C>where
C: UnwindSafe,
Blanket Implementations§
Source§impl<T> AggregatePredicateBuilder for Twhere
T: AggregateSelectionExpr + Copy,
impl<T> AggregatePredicateBuilder for Twhere
T: AggregateSelectionExpr + Copy,
fn compare<T>(self, op: ComparisonOp, value: T) -> HavingPredicate
fn eq<T>(self, value: T) -> HavingPredicate
fn ne<T>(self, value: T) -> HavingPredicate
fn gt<T>(self, value: T) -> HavingPredicate
fn ge<T>(self, value: T) -> HavingPredicate
fn lt<T>(self, value: T) -> HavingPredicate
fn le<T>(self, value: T) -> HavingPredicate
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> GetDeleteMarker for T
impl<T> GetDeleteMarker for T
default fn delete_marker_field() -> Option<&'static str>
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