pub struct FuncCount {
pub arg: Option<Box<Expr>>,
pub filter: Option<Box<Expr>>,
}Fields§
§arg: Option<Box<Expr>>When None, it means count(*) Otherwise, count the number of rows for
which the expression does not evaluate to NULL
filter: Option<Box<Expr>>Optional expression used to filter the rows before counting
Trait Implementations§
impl StructuralPartialEq for FuncCount
Auto Trait Implementations§
impl Freeze for FuncCount
impl RefUnwindSafe for FuncCount
impl Send for FuncCount
impl Sync for FuncCount
impl Unpin for FuncCount
impl UnwindSafe for FuncCount
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