Struct weedle::common::Parenthesized [] [src]

pub struct Parenthesized<T> {
    pub open_paren: OpenParen,
    pub body: T,
    pub close_paren: CloseParen,
}

Parses { body }

Fields

Trait Implementations

impl<T: Debug> Debug for Parenthesized<T>
[src]

[src]

Formats the value using the given formatter. Read more

impl<T: PartialEq> PartialEq for Parenthesized<T>
[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<T: Parse> Parse for Parenthesized<T>
[src]

Auto Trait Implementations

impl<T> Send for Parenthesized<T> where
    T: Send

impl<T> Sync for Parenthesized<T> where
    T: Sync