Enum python_parser::ast::AugAssignOp[][src]

pub enum AugAssignOp {
    Add,
    Sub,
    Mult,
    MatMult,
    Div,
    Mod,
    BitAnd,
    BitOr,
    BitXor,
    Lshift,
    Rshift,
    Power,
    Floordiv,
}

+= and its friends.

Variants

Trait Implementations

impl Clone for AugAssignOp
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for AugAssignOp
[src]

impl Debug for AugAssignOp
[src]

Formats the value using the given formatter. Read more

impl PartialEq for AugAssignOp
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for AugAssignOp
[src]

impl Hash for AugAssignOp
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl Display for AugAssignOp
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for AugAssignOp

impl Sync for AugAssignOp