Enum parser_c::syntax::ast::CDeclarationSpecifier []

pub enum CDeclarationSpecifier<a> {
    CStorageSpec(CStorageSpecifier<a>),
    CTypeSpec(CTypeSpecifier<a>),
    CTypeQual(CTypeQualifier<a>),
    CFunSpec(CFunctionSpecifier<a>),
    CAlignSpec(CAlignmentSpecifier<a>),
}

Variants

Trait Implementations

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

Formats the value using the given formatter.

impl CNode for CDeclarationSpecifier<NodeInfo>