Enum compiletest_rs::common::Mode [] [src]

pub enum Mode {
    CompileFail,
    ParseFail,
    RunFail,
    RunPass,
    RunPassValgrind,
    Pretty,
    DebugInfoGdb,
    DebugInfoLldb,
    Codegen,
    Rustdoc,
    CodegenUnits,
}

Variants

CompileFailParseFailRunFailRunPassRunPassValgrindPrettyDebugInfoGdbDebugInfoLldbCodegenRustdocCodegenUnits

Trait Implementations

impl Debug for Mode
[src]

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

Formats the value using the given formatter.

impl PartialEq for Mode
[src]

fn eq(&self, __arg_0: &Mode) -> 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 Copy for Mode
[src]

impl Clone for Mode
[src]

fn clone(&self) -> Mode

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 FromStr for Mode
[src]

type Err = ()

The associated error which can be returned from parsing.

fn from_str(s: &str) -> Result<Mode()>

Parses a string s to return a value of this type. Read more

impl Display for Mode
[src]

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

Formats the value using the given formatter.