Struct cpp_demangle::ast::FunctionParam[][src]

pub struct FunctionParam(_, _, _);

The <function-param> production.

<function-param> ::= fp <top-level CV-qualifiers> _
                         # L == 0, first parameter
                 ::= fp <top-level CV-qualifiers> <parameter-2 non-negative number> _
                         # L == 0, second and later parameters
                 ::= fL <L-1 non-negative number> p <top-level CV-qualifiers> _
                         # L > 0, first parameter
                 ::= fL <L-1 non-negative number> p <top-level CV-qualifiers> <parameter-2 non-negative number> _
                         # L > 0, second and later parameters

Trait Implementations

impl Clone for FunctionParam
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for FunctionParam
[src]

Formats the value using the given formatter. Read more

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

Auto Trait Implementations