[][src]Struct ra_ap_syntax::ast::BinExpr

pub struct BinExpr { /* fields omitted */ }

Implementations

impl BinExpr[src]

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

pub fn op_kind(&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 sub_exprs(&self) -> (Option<Expr>, Option<Expr>)[src]

impl BinExpr[src]

#[must_use]pub fn replace_op(&self, op: SyntaxKind) -> Option<BinExpr>[src]

Trait Implementations

impl AstNode for BinExpr[src]

impl AttrsOwner 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<N> AstNodeEdit for N where
    N: AstNode + Clone
[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> 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.