Enum parser_c::syntax::ast::CExternalDeclaration []

pub enum CExternalDeclaration<a> {
    CDeclExt(CDeclaration<a>),
    CFDefExt(CFunctionDef<a>),
    CAsmExt(CStringLiteral<a>, a),
}

Variants

Trait Implementations

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

Formats the value using the given formatter.

impl CNode for CExternalDeclaration<NodeInfo>