pub enum Oper {
UnOper(UnOper),
BinOper(BinOper),
}
Variants§
Implementations§
Source§impl Oper
impl Oper
pub(crate) fn is_logical(&self) -> bool
pub(crate) fn is_between(&self) -> bool
pub(crate) fn is_like(&self) -> bool
pub(crate) fn is_in(&self) -> bool
pub(crate) fn is_is(&self) -> bool
pub(crate) fn is_shift(&self) -> bool
pub(crate) fn is_arithmetic(&self) -> bool
pub(crate) fn is_comparison(&self) -> bool
Trait Implementations§
impl StructuralPartialEq for Oper
Auto Trait Implementations§
impl Freeze for Oper
impl RefUnwindSafe for Oper
impl Send for Oper
impl Sync for Oper
impl Unpin for Oper
impl UnwindSafe for Oper
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