pub enum StorageErrorKind {
Show 14 variants
ObjectStore(Box<Error>),
BadPrefix(OsString),
S3GetObjectError(Box<SdkError<GetObjectError, HttpResponse>>),
S3PutObjectError(Box<SdkError<PutObjectError, HttpResponse>>),
S3CreateMultipartUploadError(Box<SdkError<CreateMultipartUploadError, HttpResponse>>),
S3UploadPartError(Box<SdkError<UploadPartError, HttpResponse>>),
S3CompleteMultipartUploadError(Box<SdkError<CompleteMultipartUploadError, HttpResponse>>),
S3HeadObjectError(Box<SdkError<HeadObjectError, HttpResponse>>),
S3ListObjectError(Box<SdkError<ListObjectsV2Error, HttpResponse>>),
S3DeleteObjectError(Box<SdkError<DeleteObjectsError, HttpResponse>>),
S3StreamError(Box<ByteStreamError>),
IOError(Error),
R2ConfigurationError(String),
Other(String),
}Variants§
ObjectStore(Box<Error>)
BadPrefix(OsString)
S3GetObjectError(Box<SdkError<GetObjectError, HttpResponse>>)
S3PutObjectError(Box<SdkError<PutObjectError, HttpResponse>>)
S3CreateMultipartUploadError(Box<SdkError<CreateMultipartUploadError, HttpResponse>>)
S3UploadPartError(Box<SdkError<UploadPartError, HttpResponse>>)
S3CompleteMultipartUploadError(Box<SdkError<CompleteMultipartUploadError, HttpResponse>>)
S3HeadObjectError(Box<SdkError<HeadObjectError, HttpResponse>>)
S3ListObjectError(Box<SdkError<ListObjectsV2Error, HttpResponse>>)
S3DeleteObjectError(Box<SdkError<DeleteObjectsError, HttpResponse>>)
S3StreamError(Box<ByteStreamError>)
IOError(Error)
R2ConfigurationError(String)
Other(String)
Trait Implementations§
Source§impl Debug for StorageErrorKind
impl Debug for StorageErrorKind
Source§impl Display for StorageErrorKind
impl Display for StorageErrorKind
Source§impl Error for StorageErrorKind
impl Error for StorageErrorKind
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl From<Box<Error>> for StorageErrorKind
impl From<Box<Error>> for StorageErrorKind
Source§fn from(source: Box<ByteStreamError>) -> Self
fn from(source: Box<ByteStreamError>) -> Self
Converts to this type from the input type.
Source§impl From<Box<SdkError<CompleteMultipartUploadError, Response>>> for StorageErrorKind
impl From<Box<SdkError<CompleteMultipartUploadError, Response>>> for StorageErrorKind
Source§fn from(
source: Box<SdkError<CompleteMultipartUploadError, HttpResponse>>,
) -> Self
fn from( source: Box<SdkError<CompleteMultipartUploadError, HttpResponse>>, ) -> Self
Converts to this type from the input type.
Source§impl From<Box<SdkError<CreateMultipartUploadError, Response>>> for StorageErrorKind
impl From<Box<SdkError<CreateMultipartUploadError, Response>>> for StorageErrorKind
Source§fn from(source: Box<SdkError<CreateMultipartUploadError, HttpResponse>>) -> Self
fn from(source: Box<SdkError<CreateMultipartUploadError, HttpResponse>>) -> Self
Converts to this type from the input type.
Source§impl From<Box<SdkError<DeleteObjectsError, Response>>> for StorageErrorKind
impl From<Box<SdkError<DeleteObjectsError, Response>>> for StorageErrorKind
Source§fn from(source: Box<SdkError<DeleteObjectsError, HttpResponse>>) -> Self
fn from(source: Box<SdkError<DeleteObjectsError, HttpResponse>>) -> Self
Converts to this type from the input type.
Source§impl From<Box<SdkError<GetObjectError, Response>>> for StorageErrorKind
impl From<Box<SdkError<GetObjectError, Response>>> for StorageErrorKind
Source§fn from(source: Box<SdkError<GetObjectError, HttpResponse>>) -> Self
fn from(source: Box<SdkError<GetObjectError, HttpResponse>>) -> Self
Converts to this type from the input type.
Source§impl From<Box<SdkError<HeadObjectError, Response>>> for StorageErrorKind
impl From<Box<SdkError<HeadObjectError, Response>>> for StorageErrorKind
Source§fn from(source: Box<SdkError<HeadObjectError, HttpResponse>>) -> Self
fn from(source: Box<SdkError<HeadObjectError, HttpResponse>>) -> Self
Converts to this type from the input type.
Source§impl From<Box<SdkError<ListObjectsV2Error, Response>>> for StorageErrorKind
impl From<Box<SdkError<ListObjectsV2Error, Response>>> for StorageErrorKind
Source§fn from(source: Box<SdkError<ListObjectsV2Error, HttpResponse>>) -> Self
fn from(source: Box<SdkError<ListObjectsV2Error, HttpResponse>>) -> Self
Converts to this type from the input type.
Source§impl From<Box<SdkError<PutObjectError, Response>>> for StorageErrorKind
impl From<Box<SdkError<PutObjectError, Response>>> for StorageErrorKind
Source§fn from(source: Box<SdkError<PutObjectError, HttpResponse>>) -> Self
fn from(source: Box<SdkError<PutObjectError, HttpResponse>>) -> Self
Converts to this type from the input type.
Source§impl From<Box<SdkError<UploadPartError, Response>>> for StorageErrorKind
impl From<Box<SdkError<UploadPartError, Response>>> for StorageErrorKind
Source§fn from(source: Box<SdkError<UploadPartError, HttpResponse>>) -> Self
fn from(source: Box<SdkError<UploadPartError, HttpResponse>>) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for StorageErrorKind
impl !RefUnwindSafe for StorageErrorKind
impl Send for StorageErrorKind
impl Sync for StorageErrorKind
impl Unpin for StorageErrorKind
impl UnsafeUnpin for StorageErrorKind
impl !UnwindSafe for StorageErrorKind
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<E> InstrumentError for Ewhere
TracedError<E>: From<E>,
impl<E> InstrumentError for Ewhere
TracedError<E>: From<E>,
Source§type Instrumented = TracedError<E>
type Instrumented = TracedError<E>
The type of the wrapped error after instrumentation
Source§fn in_current_span(self) -> <E as InstrumentError>::Instrumented
fn in_current_span(self) -> <E as InstrumentError>::Instrumented
Instrument an Error by bundling it with a SpanTrace Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
Source§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string, but without panic on OOM.