Enum parser_c::syntax::ast::CPartDesignator []

pub enum CPartDesignator<a> {
    CArrDesig(CExpression<a>, a),
    CMemberDesig(Ident, a),
    CRangeDesig(CExpression<a>, CExpression<a>, a),
}

Variants

Trait Implementations

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

Formats the value using the given formatter.

impl CNode for CPartDesignator<NodeInfo>