pub struct ExprStatementData(pub Option<Node<ExprData>>);
Expand description
Expression statement.
Tuple Fields§
§0: Option<Node<ExprData>>
Trait Implementations§
Source§impl Clone for ExprStatementData
impl Clone for ExprStatementData
Source§fn clone(&self) -> ExprStatementData
fn clone(&self) -> ExprStatementData
Returns a duplicate 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 Debug for ExprStatementData
impl Debug for ExprStatementData
Source§impl From<Node<ExprStatementData>> for ExprStatementData
impl From<Node<ExprStatementData>> for ExprStatementData
Source§fn from(node: Node<ExprStatementData>) -> ExprStatementData
fn from(node: Node<ExprStatementData>) -> ExprStatementData
Converts to this type from the input type.
Source§impl NodeContent for ExprStatementData
impl NodeContent for ExprStatementData
Source§fn into_node<T>(self) -> Node<T>where
T: From<Self> + NodeContent,
fn into_node<T>(self) -> Node<T>where
T: From<Self> + NodeContent,
Convert the contents into a node
Source§fn spanned(self, start: LexerPosition, end: LexerPosition) -> Node<Self>
fn spanned(self, start: LexerPosition, end: LexerPosition) -> Node<Self>
Add span information to a syntax node
Source§impl NodeContentDisplay for ExprStatementData
impl NodeContentDisplay for ExprStatementData
Source§impl PartialEq for ExprStatementData
impl PartialEq for ExprStatementData
impl StructuralPartialEq for ExprStatementData
Auto Trait Implementations§
impl Freeze for ExprStatementData
impl RefUnwindSafe for ExprStatementData
impl Send for ExprStatementData
impl Sync for ExprStatementData
impl Unpin for ExprStatementData
impl UnwindSafe for ExprStatementData
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