Enum parser_c::syntax::ast::CConstant []

pub enum CConstant<a> {
    CIntConst(CInteger, a),
    CCharConst(CChar, a),
    CFloatConst(CFloat, a),
    CStrConst(CString, a),
}

Variants

Trait Implementations

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

Formats the value using the given formatter.

impl CNode for CConstant<NodeInfo>