[][src]Struct clang::ObjCQualifiers

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

in_: bool

Indicates use of the in qualifier.

inout: bool

Indicates use of the inout qualifier.

out: bool

Indicates use of the out qualifier.

bycopy: bool

Indicates use of the bycopy qualifier.

byref: bool

Indicates use of the byref qualifier.

oneway: bool

Indicates use of the oneway qualifier.

Trait Implementations

impl Clone for ObjCQualifiers[src]

impl Copy for ObjCQualifiers[src]

impl Debug for ObjCQualifiers[src]

impl Eq for ObjCQualifiers[src]

impl From<ObjCQualifiers> for CXObjCDeclQualifierKind[src]

impl From<i32> for ObjCQualifiers[src]

impl Hash for ObjCQualifiers[src]

impl PartialEq<ObjCQualifiers> for ObjCQualifiers[src]

impl StructuralEq for ObjCQualifiers[src]

impl StructuralPartialEq for ObjCQualifiers[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.