pub struct AggregateStar;Expand description
Flag aggregate functions other than COUNT that use * as their argument
(e.g., SUM(*), AVG(*), MIN(*), MAX(*)). Only COUNT(*) is valid
SQL; using * with other aggregates is almost always a typo or logic error.
Trait Implementations§
Source§impl Rule for AggregateStar
impl Rule for AggregateStar
Auto Trait Implementations§
impl Freeze for AggregateStar
impl RefUnwindSafe for AggregateStar
impl Send for AggregateStar
impl Sync for AggregateStar
impl Unpin for AggregateStar
impl UnsafeUnpin for AggregateStar
impl UnwindSafe for AggregateStar
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