[][src]Enum axon_parser::ast::BinOpId

pub enum BinOpId {
    Add,
    And,
    Cmp,
    Div,
    Eq,
    Gt,
    Gte,
    Lt,
    Lte,
    Mul,
    Ne,
    Or,
    Sub,
}

Enumerates the types of binary operations present in Axon code.

Variants

Add
And
Cmp
Div
Eq
Gt
Gte
Lt
Lte
Mul
Ne
Or
Sub

Implementations

impl BinOpId[src]

pub fn type_str(&self) -> &str[src]

Returns the value which SkySpark uses to differentiate the types of AST dicts.

pub fn to_symbol(&self) -> &str[src]

Returns the Axon symbol for this BinOp.

pub fn precedence(&self) -> u8[src]

Returns an int representing how high the operator's precendence is, where 2 is the highest precedence for a binary operation.

Trait Implementations

impl Clone for BinOpId[src]

impl Debug for BinOpId[src]

impl PartialEq<BinOpId> for BinOpId[src]

impl StructuralPartialEq for BinOpId[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, 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.