Enum clang::Availability [] [src]

#[repr(C)]
pub enum Availability { Available, Deprecated, Inaccessible, Unavailable, }

Indicates the availability of an AST entity.

Variants

The entity is available.

The entity is available but has been deprecated and any usage of it will be a warning.

The entity is available but is not accessible and any usage of it will be an error.

The entity is not available and any usage of it will be an error.

Trait Implementations

impl Copy for Availability
[src]

impl Clone for Availability
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Availability
[src]

Formats the value using the given formatter.

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

impl Hash for Availability
[src]

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

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