Struct weedle::IncludesStatementDefinition [] [src]

pub struct IncludesStatementDefinition {
    pub attributes: Option<ExtendedAttributeList>,
    pub lhs_identifier: Identifier,
    pub includes: Includes,
    pub rhs_identifier: Identifier,
    pub semi_colon: SemiColon,
}

Parses [attributes]? identifier includes identifier;

Fields

Trait Implementations

impl Debug for IncludesStatementDefinition
[src]

[src]

Formats the value using the given formatter. Read more

impl PartialEq for IncludesStatementDefinition
[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 IncludesStatementDefinition
[src]

Auto Trait Implementations