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

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl From<i32> for ObjCQualifiers[src]

impl From<ObjCQualifiers> for CXObjCDeclQualifierKind[src]

impl Eq for ObjCQualifiers[src]

impl Copy for ObjCQualifiers[src]

impl PartialEq<ObjCQualifiers> for ObjCQualifiers[src]

impl Debug for ObjCQualifiers[src]

impl Hash for ObjCQualifiers[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0
[src]

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

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

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

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

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.