Struct google_api_proto::google::devtools::resultstore::v2::RemoteTestAttemptTiming
source · 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>,
}
Expand description
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§
source§impl Clone for RemoteTestAttemptTiming
impl Clone for RemoteTestAttemptTiming
source§fn clone(&self) -> RemoteTestAttemptTiming
fn clone(&self) -> RemoteTestAttemptTiming
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for RemoteTestAttemptTiming
impl Debug for RemoteTestAttemptTiming
source§impl Default for RemoteTestAttemptTiming
impl Default for RemoteTestAttemptTiming
source§impl Message for RemoteTestAttemptTiming
impl Message for RemoteTestAttemptTiming
source§fn encoded_len(&self) -> usize
fn encoded_len(&self) -> usize
source§fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
source§fn encode_to_vec(&self) -> Vec<u8>where
Self: Sized,
fn encode_to_vec(&self) -> Vec<u8>where
Self: Sized,
source§fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
source§fn encode_length_delimited_to_vec(&self) -> Vec<u8>where
Self: Sized,
fn encode_length_delimited_to_vec(&self) -> Vec<u8>where
Self: Sized,
source§fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
source§fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
source§fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
self
. Read moresource§fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
self
.source§impl PartialEq for RemoteTestAttemptTiming
impl PartialEq for RemoteTestAttemptTiming
source§fn eq(&self, other: &RemoteTestAttemptTiming) -> bool
fn eq(&self, other: &RemoteTestAttemptTiming) -> bool
self
and other
values to be equal, and is used
by ==
.impl Copy for RemoteTestAttemptTiming
impl StructuralPartialEq for RemoteTestAttemptTiming
Auto Trait Implementations§
impl Freeze for RemoteTestAttemptTiming
impl RefUnwindSafe for RemoteTestAttemptTiming
impl Send for RemoteTestAttemptTiming
impl Sync for RemoteTestAttemptTiming
impl Unpin for RemoteTestAttemptTiming
impl UnwindSafe for RemoteTestAttemptTiming
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T
in a tonic::Request