pub struct CompoundStatementData {
pub statement_list: Vec<Statement>,
}Expand description
Compound statement (with no new scope).
Fields§
§statement_list: Vec<Statement>List of statements
Trait Implementations§
Source§impl Clone for CompoundStatementData
impl Clone for CompoundStatementData
Source§fn clone(&self) -> CompoundStatementData
fn clone(&self) -> CompoundStatementData
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 CompoundStatementData
impl Debug for CompoundStatementData
Source§impl From<Node<CompoundStatementData>> for CompoundStatementData
impl From<Node<CompoundStatementData>> for CompoundStatementData
Source§fn from(node: Node<CompoundStatementData>) -> Self
fn from(node: Node<CompoundStatementData>) -> Self
Converts to this type from the input type.
Source§impl NodeContent for CompoundStatementData
impl NodeContent for CompoundStatementData
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 PartialEq for CompoundStatementData
impl PartialEq for CompoundStatementData
impl StructuralPartialEq for CompoundStatementData
Auto Trait Implementations§
impl Freeze for CompoundStatementData
impl RefUnwindSafe for CompoundStatementData
impl Send for CompoundStatementData
impl Sync for CompoundStatementData
impl Unpin for CompoundStatementData
impl UnwindSafe for CompoundStatementData
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