Enum moore_vhdl::hir::BinaryOp [] [src]

pub enum BinaryOp {
    Logical(LogicalOp),
    Rel(RelationalOp),
    Match(RelationalOp),
    Shift(ShiftOp),
    Add,
    Sub,
    Concat,
    Mul,
    Div,
    Mod,
    Rem,
    Pow,
}

A binary operator.

See IEEE 1076-2008 section 9.2.

Variants

A logical operator.

A relational operator.

A matching relational operator. These are the relational operators prefixed with a ?.

A shift operator.

The + operator.

The - operator.

The & operator.

The * operator.

The / operator.

The mod operator.

The rem operator.

The ** operator.

Trait Implementations

impl Copy for BinaryOp
[src]

impl Clone for BinaryOp
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for BinaryOp
[src]

[src]

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

[src]

This method tests for !=.

impl Eq for BinaryOp
[src]

impl Debug for BinaryOp
[src]

[src]

Formats the value using the given formatter.