Enum clang::AlignofError[][src]

pub enum AlignofError {
    Dependent,
    Incomplete,
}

Indicates the error that prevented determining the alignment of a type.

Variants

The type is a dependent type.

The type is an incomplete type.

Trait Implementations

impl Copy for AlignofError
[src]

impl Clone for AlignofError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for AlignofError
[src]

Formats the value using the given formatter. Read more

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

impl Hash for AlignofError
[src]

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

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

impl Error for AlignofError
[src]

This method is soft-deprecated. Read more

The lower-level cause of this error, if any. Read more

impl From<AlignofError> for String
[src]

Performs the conversion.

impl Display for AlignofError
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations