pub enum Binop {
Arithmetic(ArithmeticBinop),
Equal,
NotEqual,
LessThan,
LessThanOrEqual,
GreaterThan,
GreaterThanOrEqual,
Append,
}Variants§
Arithmetic(ArithmeticBinop)
Equal
NotEqual
LessThan
LessThanOrEqual
GreaterThan
GreaterThanOrEqual
Append
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Binop
impl RefUnwindSafe for Binop
impl Send for Binop
impl Sync for Binop
impl Unpin for Binop
impl UnwindSafe for Binop
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