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

pub struct FunctionParam(_, _, _);

The 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]

impl Debug for FunctionParam[src]

impl Eq for FunctionParam[src]

impl PartialEq<FunctionParam> for FunctionParam[src]

impl StructuralEq for FunctionParam[src]

impl StructuralPartialEq for FunctionParam[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.