Struct google_servicecontrol1::api::QuotaError[][src]

pub struct QuotaError {
    pub code: Option<String>,
    pub description: Option<String>,
    pub status: Option<Status>,
    pub subject: Option<String>,
}

Represents error information for QuotaOperation.

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

Fields

code: Option<String>

Error code.

description: Option<String>

Free-form text that provides details on the cause of the error.

status: Option<Status>

Contains additional information about the quota error. If available, status.code will be non zero.

subject: Option<String>

Subject to whom this error applies. See the specific enum for more details on this field. For example, "clientip:" or "project:".

Trait Implementations

impl Clone for QuotaError[src]

impl Debug for QuotaError[src]

impl Default for QuotaError[src]

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

impl Part for QuotaError[src]

impl Serialize for QuotaError[src]

Auto Trait Implementations

impl RefUnwindSafe for QuotaError[src]

impl Send for QuotaError[src]

impl Sync for QuotaError[src]

impl Unpin for QuotaError[src]

impl UnwindSafe for QuotaError[src]

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.