[][src]Enum boa::syntax::ast::op::AssignOp

pub enum AssignOp {
    Add,
    Sub,
    Mul,
    Pow,
    Div,
    Mod,
    And,
    Or,
    Xor,
    Shl,
    Shr,
}

A binary operation between 2 values

Variants

Add

a += b - Add assign

Sub

a -= b - Sub assign

Mul

a *= b - Mul assign

Pow

a **= b - Exponent assign

Div

a /= b - Div assign

Mod

a %= b - Modulus assign

And

a &= b - Bitwise and assign

Or

a |= b - Bitwise or assign

Xor

a ^= b - Bitwise xor assign

Shl

a <<= b - Left shift assign

Shr

a >>= b - Right shift assign

Trait Implementations

impl Clone for AssignOp[src]

impl Debug for AssignOp[src]

impl Display for AssignOp[src]

impl Drop for AssignOp[src]

impl Finalize for AssignOp[src]

impl PartialEq<AssignOp> for AssignOp[src]

impl StructuralPartialEq for AssignOp[src]

impl Trace for AssignOp[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,