Struct clang::ObjCQualifiers[][src]

pub struct ObjCQualifiers {
    pub in_: bool,
    pub inout: bool,
    pub out: bool,
    pub bycopy: bool,
    pub byref: bool,
    pub oneway: bool,
}

Indicates which qualifiers were applied to an Objective-C method return or parameter type.

Fields

Indicates use of the in qualifier.

Indicates use of the inout qualifier.

Indicates use of the out qualifier.

Indicates use of the bycopy qualifier.

Indicates use of the byref qualifier.

Indicates use of the oneway qualifier.

Trait Implementations

impl Copy for ObjCQualifiers
[src]

impl Clone for ObjCQualifiers
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ObjCQualifiers
[src]

Formats the value using the given formatter. Read more

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

impl Hash for ObjCQualifiers
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl From<CXObjCDeclQualifierKind> for ObjCQualifiers
[src]

Performs the conversion.

impl From<ObjCQualifiers> for CXObjCDeclQualifierKind
[src]

Performs the conversion.

Auto Trait Implementations