Struct syntax::ast::Block  [−][src]
pub struct Block {
    pub stmts: Vec<Stmt>,
    pub id: NodeId,
    pub rules: BlockCheckMode,
    pub span: Span,
    pub recovered: bool,
}A Block ({ .. }).
E.g. { .. } as in fn foo() { .. }
Fields
stmts: Vec<Stmt>
                           Statements in a block
id: NodeId
                           
                           
                           
                           rules: BlockCheckMode
                           Distinguishes between unsafe { ... } and { ... }
span: Span
                           
                           
                           
                           recovered: bool
                           
                Trait Implementations
impl Clone for Block[src] 
impl Clone for Blockfn clone(&self) -> Block[src] 
fn clone(&self) -> BlockReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src] 
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
impl Encodable for Block[src] 
impl Encodable for Blockimpl Decodable for Block[src] 
impl Decodable for Blockimpl Debug for Block[src] 
impl Debug for Blockfn fmt(&self, f: &mut Formatter) -> Result[src] 
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl ToTokens for Block[src] 
impl ToTokens for Block