Struct rgo::ast::ParameterDecl [] [src]

pub struct ParameterDecl {
    pub identifiers: Vec<String>,
    pub typ: Type,
    pub variadic: bool,
}

Fields

The type assigned to every identifier in this declaration.

Trait Implementations

impl Debug for ParameterDecl
[src]

Formats the value using the given formatter.

impl Clone for ParameterDecl
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ParameterDecl
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for ParameterDecl
[src]