Enum gapi_grpc::google::appengine::v1::error_handler::ErrorCode[][src]

#[repr(i32)]pub enum ErrorCode {
    Unspecified,
    OverQuota,
    DosApiDenial,
    Timeout,
}

Error codes.

Variants

Unspecified

Not specified. ERROR_CODE_DEFAULT is assumed.

OverQuota

Application has exceeded a resource quota.

DosApiDenial

Client blocked by the application’s Denial of Service protection configuration.

Timeout

Deadline reached before the application responds.

Implementations

impl ErrorCode[src]

pub fn is_valid(value: i32) -> bool[src]

Returns true if value is a variant of ErrorCode.

pub fn from_i32(value: i32) -> Option<ErrorCode>[src]

Converts an i32 to a ErrorCode, or None if value is not a valid variant.

Trait Implementations

impl Clone for ErrorCode[src]

impl Copy for ErrorCode[src]

impl Debug for ErrorCode[src]

impl Default for ErrorCode[src]

impl Eq for ErrorCode[src]

impl From<ErrorCode> for i32[src]

impl Hash for ErrorCode[src]

impl Ord for ErrorCode[src]

impl PartialEq<ErrorCode> for ErrorCode[src]

impl PartialOrd<ErrorCode> for ErrorCode[src]

impl StructuralEq for ErrorCode[src]

impl StructuralPartialEq for ErrorCode[src]

Auto Trait Implementations

impl RefUnwindSafe for ErrorCode

impl Send for ErrorCode

impl Sync for ErrorCode

impl Unpin for ErrorCode

impl UnwindSafe for ErrorCode

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<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?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]