Struct jj_cli::template_parser::ExpressionNode
source · pub struct ExpressionNode<'i> {
pub kind: ExpressionKind<'i>,
pub span: Span<'i>,
}Expand description
AST node without type or name checking.
Fields§
§kind: ExpressionKind<'i>§span: Span<'i>Trait Implementations§
source§impl<'i> Clone for ExpressionNode<'i>
impl<'i> Clone for ExpressionNode<'i>
source§fn clone(&self) -> ExpressionNode<'i>
fn clone(&self) -> ExpressionNode<'i>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl<'i> Debug for ExpressionNode<'i>
impl<'i> Debug for ExpressionNode<'i>
source§impl<'i> PartialEq for ExpressionNode<'i>
impl<'i> PartialEq for ExpressionNode<'i>
source§fn eq(&self, other: &ExpressionNode<'i>) -> bool
fn eq(&self, other: &ExpressionNode<'i>) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl<'i> StructuralPartialEq for ExpressionNode<'i>
Auto Trait Implementations§
impl<'i> Freeze for ExpressionNode<'i>
impl<'i> RefUnwindSafe for ExpressionNode<'i>
impl<'i> Send for ExpressionNode<'i>
impl<'i> Sync for ExpressionNode<'i>
impl<'i> Unpin for ExpressionNode<'i>
impl<'i> UnwindSafe for ExpressionNode<'i>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more