Enum rustdoc::doctest::TestFailure [−][src]
enum TestFailure {
CompileError,
UnexpectedCompilePass,
MissingErrorCodes(Vec<String>),
ExecutionError(Error),
ExecutionFailure(Output),
UnexpectedRunPass,
}
Expand description
Documentation test failure modes.
Variants
The test failed to compile.
The test is marked compile_fail
but compiled successfully.
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.
Tuple Fields of ExecutionError
0: Error
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.
Tuple Fields of ExecutionFailure
0: Output
The test is marked should_panic
but the test binary executed successfully.
Auto Trait Implementations
impl !RefUnwindSafe for TestFailure
impl Send for TestFailure
impl Sync for TestFailure
impl Unpin for TestFailure
impl !UnwindSafe for TestFailure
Blanket Implementations
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span
, returning an
Instrumented
wrapper. Read more
pub fn vzip(self) -> V
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 bytesUnexpectedCompilePass
: 0 bytesMissingErrorCodes
: 24 bytesExecutionError
: 16 bytesExecutionFailure
: 56 bytesUnexpectedRunPass
: 0 bytes