Enum gcp_bigquery_client::error::BQError[][src]

pub enum BQError {
    InvalidServiceAccountKey(Error),
    InvalidServiceAccountAuthenticator(Error),
    AuthError(AuthError),
    YupAuthError(Error),
    RequestError(Error),
    ResponseError {
        error: Value,
    },
    NoDataAvailable,
    InvalidColumnIndex {
        col_index: usize,
    },
    InvalidColumnName {
        col_name: String,
    },
    InvalidColumnType {
        col_index: usize,
        col_type: String,
        type_requested: String,
    },
    SerializationError(Error),
}

Variants

InvalidServiceAccountKey(Error)
InvalidServiceAccountAuthenticator(Error)
AuthError(AuthError)
YupAuthError(Error)
RequestError(Error)
ResponseError

Fields of ResponseError

error: Value
NoDataAvailable
InvalidColumnIndex

Fields of InvalidColumnIndex

col_index: usize
InvalidColumnName

Fields of InvalidColumnName

col_name: String
InvalidColumnType

Fields of InvalidColumnType

col_index: usizecol_type: Stringtype_requested: String
SerializationError(Error)

Trait Implementations

impl Debug for BQError[src]

impl Display for BQError[src]

impl Error for BQError[src]

impl From<AuthError> for BQError[src]

impl From<Error> for BQError[src]

impl From<Error> for BQError[src]

impl From<Error> for BQError[src]

impl From<Error> for BQError[src]

Auto Trait Implementations

impl !RefUnwindSafe for BQError

impl Send for BQError

impl Sync for BQError

impl Unpin for BQError

impl !UnwindSafe for BQError

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> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

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.