Struct weedle::PartialInterfaceDefinition [] [src]

pub struct PartialInterfaceDefinition {
    pub attributes: Option<ExtendedAttributeList>,
    pub partial: Partial,
    pub interface: Interface,
    pub identifier: Identifier,
    pub members: Parenthesized<InterfaceMembers>,
    pub semi_colon: SemiColon,
}

Parses [attributes]? partial interface identifier { members };

Fields

Trait Implementations

impl Debug for PartialInterfaceDefinition
[src]

[src]

Formats the value using the given formatter. Read more

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

Auto Trait Implementations