#[non_exhaustive]pub enum STEVecOperator {
LeftContainsRight,
RightContainsLeft,
Selector,
}Expand description
These are all binary operators (probably PG specific).
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.
Implementations§
Trait Implementations§
Source§impl Clone for STEVecOperator
impl Clone for STEVecOperator
Source§fn clone(&self) -> STEVecOperator
fn clone(&self) -> STEVecOperator
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 STEVecOperator
impl Debug for STEVecOperator
Source§impl Hash for STEVecOperator
impl Hash for STEVecOperator
Source§impl PartialEq for STEVecOperator
impl PartialEq for STEVecOperator
impl Copy for STEVecOperator
impl Eq for STEVecOperator
impl StructuralPartialEq for STEVecOperator
Auto Trait Implementations§
impl Freeze for STEVecOperator
impl RefUnwindSafe for STEVecOperator
impl Send for STEVecOperator
impl Sync for STEVecOperator
impl Unpin for STEVecOperator
impl UnwindSafe for STEVecOperator
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