Enum clang::SaveError [] [src]

pub enum SaveError {
    Errors,
    Unknown,
}

Indicates the type of error that prevented the saving of a translation unit to an AST file.

Variants

Errors in the translation unit prevented saving.

An unknown error occurred.

Trait Implementations

impl Copy for SaveError
[src]

impl Clone for SaveError
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for SaveError
[src]

[src]

Formats the value using the given formatter. Read more

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

impl Hash for SaveError
[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 SaveError
[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<SaveError> for String
[src]

[src]

Performs the conversion.

impl Display for SaveError
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for SaveError

impl Sync for SaveError