Struct weedle::CallbackInterfaceDefinition [] [src]

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

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

Fields

Trait Implementations

impl Debug for CallbackInterfaceDefinition
[src]

[src]

Formats the value using the given formatter. Read more

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

Auto Trait Implementations