Struct gapi_grpc::google::genomics::v1::OperationMetadata[][src]

pub struct OperationMetadata {
    pub project_id: String,
    pub create_time: Option<Timestamp>,
    pub start_time: Option<Timestamp>,
    pub end_time: Option<Timestamp>,
    pub request: Option<Any>,
    pub events: Vec<OperationEvent>,
    pub client_id: String,
    pub runtime_metadata: Option<Any>,
    pub labels: HashMap<String, String>,
}

Metadata describing an [Operation][google.longrunning.Operation].

Fields

project_id: String

The Google Cloud Project in which the job is scoped.

create_time: Option<Timestamp>

The time at which the job was submitted to the Genomics service.

start_time: Option<Timestamp>

The time at which the job began to run.

end_time: Option<Timestamp>

The time at which the job stopped running.

request: Option<Any>

The original request that started the operation. Note that this will be in current version of the API. If the operation was started with v1beta2 API and a GetOperation is performed on v1 API, a v1 request will be returned.

events: Vec<OperationEvent>

Optional event messages that were generated during the job’s execution. This also contains any warnings that were generated during import or export.

client_id: String

This field is deprecated. Use labels instead. Optionally provided by the caller when submitting the request that creates the operation.

runtime_metadata: Option<Any>

Runtime metadata on this Operation.

labels: HashMap<String, String>

Optionally provided by the caller when submitting the request that creates the operation.

Trait Implementations

impl Clone for OperationMetadata[src]

impl Debug for OperationMetadata[src]

impl Default for OperationMetadata[src]

impl Message for OperationMetadata[src]

impl PartialEq<OperationMetadata> for OperationMetadata[src]

impl StructuralPartialEq for OperationMetadata[src]

Auto Trait Implementations

impl RefUnwindSafe for OperationMetadata

impl Send for OperationMetadata

impl Sync for OperationMetadata

impl Unpin for OperationMetadata

impl UnwindSafe for OperationMetadata

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]