Enum moore_svlog_syntax::token::Op [] [src]

pub enum Op {
    Assign,
    AssignAdd,
    AssignSub,
    AssignMul,
    AssignDiv,
    AssignMod,
    AssignBitAnd,
    AssignBitOr,
    AssignBitXor,
    AssignLogicShL,
    AssignLogicShR,
    AssignArithShL,
    AssignArithShR,
    Add,
    Sub,
    Mul,
    Div,
    Mod,
    Pow,
    Inc,
    Dec,
    LogicEq,
    LogicNeq,
    CaseEq,
    CaseNeq,
    WildcardEq,
    WildcardNeq,
    Lt,
    Leq,
    Gt,
    Geq,
    LogicNot,
    LogicAnd,
    LogicOr,
    LogicImpl,
    LogicEquiv,
    BitNot,
    BitAnd,
    BitNand,
    BitOr,
    BitNor,
    BitXor,
    BitXnor,
    BitNxor,
    LogicShL,
    LogicShR,
    ArithShL,
    ArithShR,
    SeqImplOl,
    SeqImplNol,
    SeqFollowOl,
    SeqFollowNol,
}

Operator symbols.

Variants

Methods

impl Op
[src]

[src]

[src]

Trait Implementations

impl Clone for Op
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for Op
[src]

impl PartialEq for Op
[src]

[src]

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

1.0.0
[src]

This method tests for !=.

impl Eq for Op
[src]

impl Hash for Op
[src]

[src]

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

1.3.0
[src]

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

impl Debug for Op
[src]

[src]

Formats the value using the given formatter.

impl Encodable for Op
[src]

[src]

Serialize a value using an Encoder.

impl Decodable for Op
[src]

[src]

Deserialize a value using a Decoder.

impl Display for Op
[src]

[src]

Formats the value using the given formatter. Read more