[][src]Struct gcp_client::google::cloud::memcache::v1beta2::OperationMetadata

pub struct OperationMetadata {
    pub create_time: Option<Timestamp>,
    pub end_time: Option<Timestamp>,
    pub target: String,
    pub verb: String,
    pub status_detail: String,
    pub cancel_requested: bool,
    pub api_version: String,
}

Represents the metadata of a long-running operation.

Fields

create_time: Option<Timestamp>

Time when the operation was created.

end_time: Option<Timestamp>

Time when the operation finished running.

target: String

Server-defined resource path for the target of the operation.

verb: String

Name of the verb executed by the operation.

status_detail: String

Human-readable status of the operation, if any.

cancel_requested: bool

Identifies whether the user has requested cancellation of the operation. Operations that have successfully been cancelled have [Operation.error][] value with a [google.rpc.Status.code][google.rpc.Status.code] of 1, corresponding to Code.CANCELLED.

api_version: String

API version used to start 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

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, 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>, 

impl<T> WithSubscriber for T[src]