Enum clang::Linkage [] [src]

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]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Linkage
[src]

Formats the value using the given formatter.

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

impl Hash for Linkage
[src]

Feeds this value into the state given, updating the hasher as necessary.

Feeds a slice of this type into the state provided.