Enum google_ondemandscanning1::client::Error[][src]

pub enum Error {
    HttpError(Error),
    UploadSizeLimitExceeded(u64u64),
    BadRequest(ErrorResponse),
    MissingAPIKey,
    MissingToken(Error),
    Cancelled,
    FieldClash(&'static str),
    JsonDecodeError(StringError),
    Failure(Response<Body>),
    Io(Error),
}

Variants

HttpError(Error)

The http connection failed

UploadSizeLimitExceeded(u64u64)

An attempt was made to upload a resource with size stored in field .0 even though the maximum upload size is what is stored in field .1.

BadRequest(ErrorResponse)

Represents information about a request that was not understood by the server. Details are included.

MissingAPIKey

We needed an API key for authentication, but didn’t obtain one. Neither through the authenticator, nor through the Delegate.

MissingToken(Error)

We required a Token, but didn’t get one from the Authenticator

Cancelled

The delgate instructed to cancel the operation

FieldClash(&'static str)

An additional, free form field clashed with one of the built-in optional ones

JsonDecodeError(StringError)

Shows that we failed to decode the server response. This can happen if the protocol changes in conjunction with strict json decoding.

Failure(Response<Body>)

Indicates an HTTP repsonse with a non-success status code

Io(Error)

An IO error occurred while reading a stream into memory

Trait Implementations

impl Debug for Error[src]

impl Display for Error[src]

impl Error for Error[src]

impl From<Error> for Error[src]

Auto Trait Implementations

impl !RefUnwindSafe for Error

impl Send for Error

impl Sync for Error

impl Unpin for Error

impl !UnwindSafe for Error

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> 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.