pub enum BinaryExpressionKind {
Math(MathKind),
Cmp(ComparisonKind),
Eq(EqKind),
Bit(BitKind),
Logic(LogicKind),
ComplexComparison,
Assign,
}
Variants§
Math(MathKind)
Cmp(ComparisonKind)
Eq(EqKind)
Bit(BitKind)
Logic(LogicKind)
ComplexComparison
Assign
Trait Implementations§
Source§impl Clone for BinaryExpressionKind
impl Clone for BinaryExpressionKind
Source§fn clone(&self) -> BinaryExpressionKind
fn clone(&self) -> BinaryExpressionKind
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 BinaryExpressionKind
impl Debug for BinaryExpressionKind
Source§impl PartialEq for BinaryExpressionKind
impl PartialEq for BinaryExpressionKind
impl StructuralPartialEq for BinaryExpressionKind
Auto Trait Implementations§
impl Freeze for BinaryExpressionKind
impl RefUnwindSafe for BinaryExpressionKind
impl Send for BinaryExpressionKind
impl Sync for BinaryExpressionKind
impl Unpin for BinaryExpressionKind
impl UnwindSafe for BinaryExpressionKind
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