Enum clang::Language[][src]

#[repr(C)]
pub enum Language { C, Cpp, ObjectiveC, Swift, }

Indicates the language used by a declaration.

Variants

The declaration uses the C programming language.

The declaration uses the C++ programming language.

The declaration uses the Objective-C programming language.

The declaration uses the Swift programming language.

Only produced by libclang 5.0 and later.

Trait Implementations

impl Copy for Language
[src]

impl Clone for Language
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Language
[src]

Formats the value using the given formatter. Read more

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

impl Hash for Language
[src]

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

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

Auto Trait Implementations

impl Send for Language

impl Sync for Language