[][src]Struct google_bigquery2::ErrorProto

pub struct ErrorProto {
    pub debug_info: Option<String>,
    pub message: Option<String>,
    pub reason: Option<String>,
    pub location: Option<String>,
}

There is no detailed description.

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

Fields

debug_info: Option<String>

Debugging information. This property is internal to Google and should not be used.

message: Option<String>

A human-readable description of the error.

reason: Option<String>

A short error code that summarizes the error.

location: Option<String>

Specifies where the error occurred, if present.

Trait Implementations

impl Clone for ErrorProto[src]

impl Debug for ErrorProto[src]

impl Default for ErrorProto[src]

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

impl Part for ErrorProto[src]

impl Serialize for ErrorProto[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> 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.

impl<T> Typeable for T where
    T: Any