[][src]Struct rslint_parser::ast::BinExpr

pub struct BinExpr { /* fields omitted */ }

Implementations

impl BinExpr[src]

pub fn op_details(&self) -> Option<(SyntaxToken, BinOp)>[src]

pub fn op(&self) -> Option<BinOp>[src]

pub fn op_token(&self) -> Option<SyntaxToken>[src]

pub fn lhs(&self) -> Option<Expr>[src]

pub fn rhs(&self) -> Option<Expr>[src]

pub fn conditional(&self) -> bool[src]

Whether this binary expr is a || or && expression.

pub fn comparison(&self) -> bool[src]

Whether this is a comparison operation, such as >, <, ==, !=, ===, etc.

Trait Implementations

impl AstNode for BinExpr[src]

impl Clone for BinExpr[src]

impl Debug for BinExpr[src]

impl Display for BinExpr[src]

impl Eq for BinExpr[src]

impl From<BinExpr> for Expr[src]

impl Hash for BinExpr[src]

impl PartialEq<BinExpr> for BinExpr[src]

impl StructuralEq for BinExpr[src]

impl StructuralPartialEq for BinExpr[src]

Auto Trait Implementations

impl RefUnwindSafe for BinExpr

impl Send for BinExpr

impl Sync for BinExpr

impl Unpin for BinExpr

impl UnwindSafe for BinExpr

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> Erasable for T

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> ToString for T where
    T: Display + ?Sized
[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.