Struct weedle::InterfaceDefinition [] [src]

pub struct InterfaceDefinition {
    pub attributes: Option<ExtendedAttributeList>,
    pub interface: Interface,
    pub identifier: Identifier,
    pub inheritance: Option<Inheritance>,
    pub members: Parenthesized<InterfaceMembers>,
    pub semi_colon: SemiColon,
}

Parses [attributes]? interface identifier ( : inheritance )? { members };

Fields

Trait Implementations

impl Debug for InterfaceDefinition
[src]

[src]

Formats the value using the given formatter. Read more

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

Auto Trait Implementations