pub enum AggregateValue {
Expression(Box<dyn Expr>),
Function(String, Vec<Box<dyn Expr>>),
}
Variants§
Auto Trait Implementations§
impl Freeze for AggregateValue
impl !RefUnwindSafe for AggregateValue
impl !Send for AggregateValue
impl !Sync for AggregateValue
impl Unpin for AggregateValue
impl !UnwindSafe for AggregateValue
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