Struct cpp_demangle::ast::CvQualifiers [] [src]

pub struct CvQualifiers {
    pub restrict: bool,
    pub volatile: bool,
    pub const_: bool,
}

The <CV-qualifiers> production.

<CV-qualifiers> ::= [r] [V] [K]   # restrict (C99), volatile, const

Fields

Is this restrict qualified?

Is this volatile qualified?

Is this const qualified?

Trait Implementations

impl Clone for CvQualifiers
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for CvQualifiers
[src]

Formats the value using the given formatter.

impl Default for CvQualifiers
[src]

Returns the "default value" for a type. Read more

impl Hash for CvQualifiers
[src]

Feeds this value into the state given, updating the hasher as necessary.

Feeds a slice of this type into the state provided.

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