Enum parser_c::syntax::ast::CInitializer []

pub enum CInitializer<a> {
    CInitExpr(CExpression<a>, a),
    CInitList(CInitializerList<a>, a),
}

Variants

Trait Implementations

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

Formats the value using the given formatter.

impl CNode for CInitializer<NodeInfo>