[][src]Struct whenever_parser::ast::BinOpNumBoolean

pub struct BinOpNumBoolean<'a> {
    pub range: &'a str,
    pub num1: Number<'a>,
    pub op: BinNumBoolOpToken<'a>,
    pub num2: Number<'a>,
}

Fields

range: &'a strnum1: Number<'a>op: BinNumBoolOpToken<'a>num2: Number<'a>

Methods

impl<'a> BinOpNumBoolean<'a>[src]

pub fn new(
    num1: Number<'a>,
    op: BinNumBoolOpToken<'a>,
    num2: Number<'a>
) -> BinOpNumBoolean<'a>
[src]

Trait Implementations

impl<'a> Graph<'a> for BinOpNumBoolean<'a>[src]

impl<'a> BoolAlt<'a> for BinOpNumBoolean<'a>[src]

Auto Trait Implementations

impl<'a> !Send for BinOpNumBoolean<'a>

impl<'a> !Sync for BinOpNumBoolean<'a>

impl<'a> Unpin for BinOpNumBoolean<'a>

impl<'a> !UnwindSafe for BinOpNumBoolean<'a>

impl<'a> !RefUnwindSafe for BinOpNumBoolean<'a>

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

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.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]