Enum clang::Severity [] [src]

pub enum Severity {
    Ignored,
    Note,
    Warning,
    Error,
    Fatal,
}

Indicates the severity of a diagnostic.

Variants

Ignored

The diagnostic has been suppressed (e.g., by a command-line option).

Note

The diagnostic is attached to the previous non-note diagnostic.

Warning

The diagnostic targets suspicious code that may or may not be wrong.

Error

The diagnostic targets ill-formed code.

Fatal

The diagnostic targets code that is ill-formed in such a way that parser recovery is unlikely to produce any useful results.

Trait Implementations

impl Hash for Severity
[src]

fn hash<__H: Hasher>(&self, __arg_0: &mut __H)

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

fn hash_slice<H>(data: &[Self], state: &mut H) where H: Hasher
1.3.0

Feeds a slice of this type into the state provided.

impl Eq for Severity
[src]

impl PartialEq for Severity
[src]

fn eq(&self, __arg_0: &Severity) -> bool

This method tests for self and other values to be equal, and is used by ==. Read more

fn ne(&self, other: &Rhs) -> bool
1.0.0

This method tests for !=.

impl Debug for Severity
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Clone for Severity
[src]

fn clone(&self) -> Severity

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl Copy for Severity
[src]