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

pub struct RemoteTestAttemptTiming {
    pub queue_duration: Option<Duration>,
    pub upload_duration: Option<Duration>,
    pub machine_setup_duration: Option<Duration>,
    pub test_process_duration: Option<Duration>,
    pub download_duration: Option<Duration>,
}
[]

Timing data for one attempt to execute a test action remotely.

Fields

queue_duration: Option<Duration>
[]

Idle period before the test process is invoked on the remote machine.

upload_duration: Option<Duration>
[]

Time to upload data dependencies from the local machine to the remote machine running the test, or to the distributed cache.

machine_setup_duration: Option<Duration>
[]

Time to set up the remote machine. Not to be confused with setup time in xUnit test frameworks, which falls within the test_process_time.

test_process_duration: Option<Duration>
[]

Time taken by the test process, typically surrounded by a small wrapper script. For Java tests, this includes JVM setup, flag parsing, class path setup, parsing files to setup the suite, and finally running your test methods. In many cases, only a small fraction of the test process time is spent running the test methods.

download_duration: Option<Duration>
[]

Time spent retrieving test logs and any other test outputs, back to the local machine.

Trait Implementations

impl Clone for RemoteTestAttemptTiming[src][+]

impl Debug for RemoteTestAttemptTiming[src][+]

impl Default for RemoteTestAttemptTiming[src][+]

impl Message for RemoteTestAttemptTiming[src][+]

impl PartialEq<RemoteTestAttemptTiming> for RemoteTestAttemptTiming[src][+]

impl StructuralPartialEq for RemoteTestAttemptTiming[src]

Auto Trait Implementations

impl RefUnwindSafe for RemoteTestAttemptTiming

impl Send for RemoteTestAttemptTiming

impl Sync for RemoteTestAttemptTiming

impl Unpin for RemoteTestAttemptTiming

impl UnwindSafe for RemoteTestAttemptTiming

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][+]