enum TestFailure {
    CompileError,
    UnexpectedCompilePass,
    MissingErrorCodes(Vec<String>),
    ExecutionError(Error),
    ExecutionFailure(Output),
    UnexpectedRunPass,
}
Expand description

Documentation test failure modes.

Variants

CompileError

The test failed to compile.

UnexpectedCompilePass

The test is marked compile_fail but compiled successfully.

MissingErrorCodes(Vec<String>)

The test failed to compile (as expected) but the compiler output did not contain all expected error codes.

ExecutionError(Error)

The test binary was unable to be executed.

ExecutionFailure(Output)

The test binary exited with a non-zero exit code.

This typically means an assertion in the test failed or another form of panic occurred.

UnexpectedRunPass

The test is marked should_panic but the test binary executed successfully.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.
Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more

Layout

Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...) attributes. Please see the Rust Reference’s “Type Layout” chapter for details on type layout guarantees.

Size: 64 bytes

Size for each variant:

  • CompileError: 0 bytes
  • UnexpectedCompilePass: 0 bytes
  • MissingErrorCodes: 24 bytes
  • ExecutionError: 8 bytes
  • ExecutionFailure: 56 bytes
  • UnexpectedRunPass: 0 bytes