Struct weedle::PartialNamespaceDefinition [] [src]

pub struct PartialNamespaceDefinition {
    pub attributes: Option<ExtendedAttributeList>,
    pub partial: Partial,
    pub namespace: Namespace,
    pub identifier: Identifier,
    pub members: Parenthesized<NamespaceMembers>,
    pub semi_colon: SemiColon,
}

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

Fields

Trait Implementations

impl Debug for PartialNamespaceDefinition
[src]

[src]

Formats the value using the given formatter. Read more

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

Auto Trait Implementations