Enum clang::Linkage [] [src]

#[repr(C)]
pub enum Linkage { Automatic, Internal, External, UniqueExternal, }

Indicates the linkage of an AST entity.

Variants

The AST entity has automatic storage (e.g., variables or parameters).

The AST entity is a static variable or static function.

The AST entity has external linkage.

The AST entity has external linkage and lives in a C++ anonymous namespace.

Trait Implementations

impl Copy for Linkage
[src]

impl Clone for Linkage
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Linkage
[src]

[src]

Formats the value using the given formatter. Read more

impl PartialEq for Linkage
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

1.0.0
[src]

This method tests for !=.

impl Eq for Linkage
[src]

impl Hash for Linkage
[src]

[src]

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

1.3.0
[src]

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

Auto Trait Implementations

impl Send for Linkage

impl Sync for Linkage