pub struct CompoundStatement {
pub statement_list: Vec<Statement>,
}Expand description
Compound statement (with no new scope).
Fields§
§statement_list: Vec<Statement>Trait Implementations§
Source§impl Clone for CompoundStatement
impl Clone for CompoundStatement
Source§fn clone(&self) -> CompoundStatement
fn clone(&self) -> CompoundStatement
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 CompoundStatement
impl Debug for CompoundStatement
Source§impl FromIterator<Statement> for CompoundStatement
impl FromIterator<Statement> for CompoundStatement
Source§impl Host for CompoundStatement
impl Host for CompoundStatement
Source§impl HostMut for CompoundStatement
impl HostMut for CompoundStatement
Source§fn visit_mut<V>(&mut self, visitor: &mut V)where
V: VisitorMut,
fn visit_mut<V>(&mut self, visitor: &mut V)where
V: VisitorMut,
Visit an AST node.
Source§impl Parse for CompoundStatement
impl Parse for CompoundStatement
Source§impl PartialEq for CompoundStatement
impl PartialEq for CompoundStatement
impl StructuralPartialEq for CompoundStatement
Auto Trait Implementations§
impl Freeze for CompoundStatement
impl RefUnwindSafe for CompoundStatement
impl Send for CompoundStatement
impl Sync for CompoundStatement
impl Unpin for CompoundStatement
impl UnwindSafe for CompoundStatement
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