Struct weedle::TypedefDefinition [] [src]

pub struct TypedefDefinition {
    pub attributes: Option<ExtendedAttributeList>,
    pub typedef: Typedef,
    pub type_: Type,
    pub identifier: Identifier,
    pub semi_colon: SemiColon,
}

Parses [attributes]? typedef type identifier;

Fields

Trait Implementations

impl Debug for TypedefDefinition
[src]

[src]

Formats the value using the given formatter. Read more

impl PartialEq for TypedefDefinition
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl Parse for TypedefDefinition
[src]

Auto Trait Implementations