pub enum Aggregate {
Int(i64),
Num(f64),
None,
}Expand description
What an Op came to.
Variants§
Int(i64)
A count or a bitwise result, which goes back as an integer.
Num(f64)
A sum or an end of the range, which goes back as a string of digits because it may not be a whole number.
None
Nothing in the range was any use to the operation, which is a null. An empty range and a range of nothing but words both land here.
Trait Implementations§
impl Copy for Aggregate
impl StructuralPartialEq for Aggregate
Auto Trait Implementations§
impl Freeze for Aggregate
impl RefUnwindSafe for Aggregate
impl Send for Aggregate
impl Sync for Aggregate
impl Unpin for Aggregate
impl UnsafeUnpin for Aggregate
impl UnwindSafe for Aggregate
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