Enum parser_c::syntax::ast::CCompoundBlockItem []

pub enum CCompoundBlockItem<a> {
    CBlockStmt(CStatement<a>),
    CBlockDecl(CDeclaration<a>),
    CNestedFunDef(CFunctionDef<a>),
}

Variants

Trait Implementations

impl<a: Clone> Clone for CCompoundBlockItem<a>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<a: Debug> Debug for CCompoundBlockItem<a>
[src]

Formats the value using the given formatter.

impl CNode for CCompoundBlockItem<NodeInfo>