#[non_exhaustive]pub enum LogicalAggregateOp {
And,
}
Available on crate feature
cluster
only.Expand description
Logical bitwise aggregating operators.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
And
Aggregate by bitwise &&
Trait Implementations§
Source§impl Clone for LogicalAggregateOp
impl Clone for LogicalAggregateOp
Source§fn clone(&self) -> LogicalAggregateOp
fn clone(&self) -> LogicalAggregateOp
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for LogicalAggregateOp
impl Debug for LogicalAggregateOp
Source§impl PartialEq for LogicalAggregateOp
impl PartialEq for LogicalAggregateOp
impl Copy for LogicalAggregateOp
impl StructuralPartialEq for LogicalAggregateOp
Auto Trait Implementations§
impl Freeze for LogicalAggregateOp
impl RefUnwindSafe for LogicalAggregateOp
impl Send for LogicalAggregateOp
impl Sync for LogicalAggregateOp
impl Unpin for LogicalAggregateOp
impl UnwindSafe for LogicalAggregateOp
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