Enum cloud_storage::Error [−][src]
pub enum Error {
Google(GoogleErrorResponse),
Reqwest(Error),
Ssl(ErrorStack),
Jwt(Error),
Serialization(Error),
Other(String),
}Expand description
Represents any of the ways storing something in Google Cloud Storage can fail.
Variants
Google(GoogleErrorResponse)If the error is caused by a non 2xx response by Google, this variant is returned.
Reqwest(Error)If another network error causes something to fail, this variant is used.
Ssl(ErrorStack)If we encouter a SSL error, for example an invalid certificate, this variant is used.
Jwt(Error)If we have problems creating or parsing a json web token, this variant is used.
Serialization(Error)If we cannot deserialize one of the repsonses sent by Google, this variant is used.
Other(String)If another failure causes the error, this variant is populated.
Trait Implementations
impl Error for Error[src]
impl Error for Error[src]fn source(&self) -> Option<&(dyn Error + 'static)>[src]
fn source(&self) -> Option<&(dyn Error + 'static)>[src]The lower-level source of this error, if any. Read more
fn backtrace(&self) -> Option<&Backtrace>[src]
fn backtrace(&self) -> Option<&Backtrace>[src]backtrace)Returns a stack backtrace, if available, of where this error occurred. Read more
fn description(&self) -> &str1.0.0[src]
fn description(&self) -> &str1.0.0[src]use the Display impl or to_string()
impl From<ErrorStack> for Error[src]
impl From<ErrorStack> for Error[src]fn from(err: ErrorStack) -> Self[src]
fn from(err: ErrorStack) -> Self[src]Performs the conversion.
impl From<GoogleErrorResponse> for Error[src]
impl From<GoogleErrorResponse> for Error[src]fn from(err: GoogleErrorResponse) -> Self[src]
fn from(err: GoogleErrorResponse) -> Self[src]Performs the conversion.
impl From<InvalidHeaderValue> for Error[src]
impl From<InvalidHeaderValue> for Error[src]fn from(err: InvalidHeaderValue) -> Self[src]
fn from(err: InvalidHeaderValue) -> Self[src]Performs the conversion.
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> BorrowMut<T> for T where
T: ?Sized, [src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]pub fn borrow_mut(&mut self) -> &mut T[src]
pub fn borrow_mut(&mut self) -> &mut T[src]Mutably borrows from an owned value. Read more
impl<T> Instrument for T[src]
impl<T> Instrument for T[src]fn instrument(self, span: Span) -> Instrumented<Self>[src]
fn instrument(self, span: Span) -> Instrumented<Self>[src]Instruments this type with the provided Span, returning an
Instrumented wrapper. Read more
fn in_current_span(self) -> Instrumented<Self>[src]
fn in_current_span(self) -> Instrumented<Self>[src]