Enum python_parser::ast::Bop[][src]

pub enum Bop {
    Add,
    Sub,
    Mult,
    Matmult,
    Mod,
    Floordiv,
    Div,
    Power,
    Lshift,
    Rshift,
    BitAnd,
    BitXor,
    BitOr,
    Lt,
    Gt,
    Eq,
    Leq,
    Geq,
    Neq,
    In,
    NotIn,
    Is,
    IsNot,
    And,
    Or,
}

Binary operators.

Variants

lower than

greater than

lower or equal

greater or equal

Trait Implementations

impl Clone for Bop
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for Bop
[src]

impl Debug for Bop
[src]

Formats the value using the given formatter. Read more

impl PartialEq for Bop
[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 Bop
[src]

impl Hash for Bop
[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 Bop
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Bop

impl Sync for Bop