Enum clang::SizeofError [] [src]

pub enum SizeofError {
    Dependent,
    Incomplete,
    VariableSize,
}

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

Variants

The type is a dependent type.

The type is an incomplete type.

The type is a variable size type.

Trait Implementations

impl Copy for SizeofError
[src]

impl Clone for SizeofError
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for SizeofError
[src]

[src]

Formats the value using the given formatter. Read more

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

impl Hash for SizeofError
[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

impl Error for SizeofError
[src]

[src]

A short description of the error. Read more

1.0.0
[src]

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

impl From<SizeofError> for String
[src]

[src]

Performs the conversion.

impl Display for SizeofError
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for SizeofError

impl Sync for SizeofError