[−][src]Struct sixtyfps_compilerlib::parser::syntax_nodes::BinaryExpression
Implementations
impl BinaryExpression[src]
pub fn Expression(&self) -> (Expression, Expression)[src]
Methods from Deref<Target = SyntaxNodeWithSourceFile>
pub fn child_node(&self, kind: SyntaxKind) -> Option<SyntaxNodeWithSourceFile>[src]
pub fn child_token(&self, kind: SyntaxKind) -> Option<SyntaxTokenWithSourceFile>[src]
pub fn child_text(&self, kind: SyntaxKind) -> Option<String>[src]
pub fn kind(&self) -> SyntaxKind[src]
pub fn children(&self) -> impl Iterator<Item = SyntaxNodeWithSourceFile>[src]
pub fn children_with_tokens(
&self
) -> impl Iterator<Item = NodeOrTokenWithSourceFile>[src]
&self
) -> impl Iterator<Item = NodeOrTokenWithSourceFile>
pub fn text(&self) -> SyntaxText[src]
Trait Implementations
impl Clone for BinaryExpression[src]
fn clone(&self) -> BinaryExpression[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for BinaryExpression[src]
impl Deref for BinaryExpression[src]
type Target = SyntaxNodeWithSourceFile
The resulting type after dereferencing.
fn deref(&self) -> &Self::Target[src]
impl DerefMut for BinaryExpression[src]
impl From<BinaryExpression> for SyntaxNodeWithSourceFile[src]
fn from(original: BinaryExpression) -> SyntaxNodeWithSourceFile[src]
impl From<SyntaxNodeWithSourceFile> for BinaryExpression[src]
fn from(original: SyntaxNodeWithSourceFile) -> BinaryExpression[src]
impl Spanned for BinaryExpression[src]
impl SpannedWithSourceFile for BinaryExpression[src]
fn source_file(&self) -> Option<&SourceFile>[src]
Auto Trait Implementations
impl !RefUnwindSafe for BinaryExpression
impl !Send for BinaryExpression
impl !Sync for BinaryExpression
impl Unpin for BinaryExpression
impl !UnwindSafe for BinaryExpression
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,