Struct gapi_grpc::google::devtools::resultstore::v2::TestError[][src]

pub struct TestError {
    pub error_message: String,
    pub exception_type: String,
    pub stack_trace: String,
}

Represents an exception that prevented a test case from completing, as reported in an element within a . For Java, multiple TestErrors are used to represent a chained exception.

Fields

error_message: String

The exception message, as reported in the message attribute. Typically short, but may be multi-line. Eg. “argument cannot be null”.

exception_type: String

The type of the exception being thrown, reported in the type attribute. For Java, this is a fully qualified Throwable class name. Eg: “java.lang.IllegalArgumentException”

stack_trace: String

The stack trace reported as the content of the element, often in a CDATA block. This contains one line for each stack frame, each including a method/function name, a class/file name, and a line number. Most recent call is usually first, but not for Python stack traces. May contain the exception_type and message.

Trait Implementations

impl Clone for TestError[src]

impl Debug for TestError[src]

impl Default for TestError[src]

impl Message for TestError[src]

impl PartialEq<TestError> for TestError[src]

impl StructuralPartialEq for TestError[src]

Auto Trait Implementations

impl RefUnwindSafe for TestError

impl Send for TestError

impl Sync for TestError

impl Unpin for TestError

impl UnwindSafe for TestError

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]