Struct google_remotebuildexecution2::api::BuildBazelRemoteExecutionV2ExecutedActionMetadata[][src]

pub struct BuildBazelRemoteExecutionV2ExecutedActionMetadata {
    pub auxiliary_metadata: Option<Vec<HashMap<String, String>>>,
    pub execution_completed_timestamp: Option<String>,
    pub execution_start_timestamp: Option<String>,
    pub input_fetch_completed_timestamp: Option<String>,
    pub input_fetch_start_timestamp: Option<String>,
    pub output_upload_completed_timestamp: Option<String>,
    pub output_upload_start_timestamp: Option<String>,
    pub queued_timestamp: Option<String>,
    pub worker: Option<String>,
    pub worker_completed_timestamp: Option<String>,
    pub worker_start_timestamp: Option<String>,
}

ExecutedActionMetadata contains details about a completed execution.

This type is not used in any activity, and only used as part of another schema.

Fields

auxiliary_metadata: Option<Vec<HashMap<String, String>>>

Details that are specific to the kind of worker used. For example, on POSIX-like systems this could contain a message with getrusage(2) statistics.

execution_completed_timestamp: Option<String>

When the worker completed executing the action command.

execution_start_timestamp: Option<String>

When the worker started executing the action command.

input_fetch_completed_timestamp: Option<String>

When the worker finished fetching action inputs.

input_fetch_start_timestamp: Option<String>

When the worker started fetching action inputs.

output_upload_completed_timestamp: Option<String>

When the worker finished uploading action outputs.

output_upload_start_timestamp: Option<String>

When the worker started uploading action outputs.

queued_timestamp: Option<String>

When was the action added to the queue.

worker: Option<String>

The name of the worker which ran the execution.

worker_completed_timestamp: Option<String>

When the worker completed the action, including all stages.

worker_start_timestamp: Option<String>

When the worker received the action.

Trait Implementations

impl Clone for BuildBazelRemoteExecutionV2ExecutedActionMetadata[src]

impl Debug for BuildBazelRemoteExecutionV2ExecutedActionMetadata[src]

impl Default for BuildBazelRemoteExecutionV2ExecutedActionMetadata[src]

impl<'de> Deserialize<'de> for BuildBazelRemoteExecutionV2ExecutedActionMetadata[src]

impl Part for BuildBazelRemoteExecutionV2ExecutedActionMetadata[src]

impl Serialize for BuildBazelRemoteExecutionV2ExecutedActionMetadata[src]

Auto Trait Implementations

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<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.