[][src]Struct gcp_client::google::cloud::gaming::v1beta::OperationStatus

pub struct OperationStatus {
    pub done: bool,
    pub error_code: i32,
    pub error_message: String,
}

Fields

done: bool

Output only. Whether the operation is done or still in progress.

error_code: i32

The error code in case of failures.

error_message: String

The human-readable error message.

Implementations

impl OperationStatus[src]

pub fn error_code(&self) -> ErrorCode[src]

Returns the enum value of error_code, or the default if the field is set to an invalid enum value.

pub fn set_error_code(&mut self, value: ErrorCode)[src]

Sets error_code to the provided enum value.

Trait Implementations

impl Clone for OperationStatus[src]

impl Debug for OperationStatus[src]

impl Default for OperationStatus[src]

impl Message for OperationStatus[src]

impl PartialEq<OperationStatus> for OperationStatus[src]

impl StructuralPartialEq for OperationStatus[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]