Interface RsBinaryExpr

All Superinterfaces:
com.intellij.psi.PsiElement, org.rust.devkt.lang.core.psi.ext.RsElement, RsExpr

public interface RsBinaryExpr extends RsExpr
  • Field Summary

    Fields inherited from interface com.intellij.psi.PsiElement

    EMPTY_ARRAY
  • Method Summary

    Modifier and Type
    Method
    Description
    @NotNull RsBinaryOp
     
    @NotNull List<RsExpr>
     
    @NotNull RsExpr
     
    @Nullable RsExpr
     

    Methods inherited from interface com.intellij.psi.PsiElement

    add, addAfter, addBefore, addRange, addRangeAfter, addRangeBefore, checkAdd, checkDelete, copy, delete, deleteChildRange, findElementAt, findReferenceAt, getChildren, getContainingFile, getContext, getFirstChild, getLanguage, getLastChild, getNavigationElement, getNextSibling, getNode, getOriginalElement, getParent, getPrevSibling, getReference, getStartOffsetInParent, getText, getTextLength, getTextOffset, getTextRange, isEquivalentTo, isPhysical, isValid, isWritable, replace, textContains, textMatches, textMatches, textToCharArray, toString
  • Method Details

    • getBinaryOp

      @NotNull @NotNull RsBinaryOp getBinaryOp()
    • getExprList

      @NotNull @NotNull List<RsExpr> getExprList()
    • getLeft

      @NotNull @NotNull RsExpr getLeft()
    • getRight

      @Nullable @Nullable RsExpr getRight()