Enum s3reader::S3ReaderError
source · [−]pub enum S3ReaderError {
MissingS3Protocol,
MissingObjectUri,
ObjectNotFetched(String),
InvalidContent,
InvalidRange(u64, u64),
}Variants
MissingS3Protocol
MissingObjectUri
ObjectNotFetched(String)
InvalidContent
InvalidRange(u64, u64)
Trait Implementations
sourceimpl Debug for S3ReaderError
impl Debug for S3ReaderError
sourceimpl Display for S3ReaderError
impl Display for S3ReaderError
sourceimpl Error for S3ReaderError
impl Error for S3ReaderError
1.30.0 · sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
sourceimpl From<S3ReaderError> for Error
impl From<S3ReaderError> for Error
sourcefn from(error: S3ReaderError) -> Error
fn from(error: S3ReaderError) -> Error
Converts to this type from the input type.
sourceimpl From<SdkError<GetObjectError, Response>> for S3ReaderError
impl From<SdkError<GetObjectError, Response>> for S3ReaderError
sourcefn from(err: SdkError<GetObjectError>) -> S3ReaderError
fn from(err: SdkError<GetObjectError>) -> S3ReaderError
Converts to this type from the input type.
Auto Trait Implementations
impl RefUnwindSafe for S3ReaderError
impl Send for S3ReaderError
impl Sync for S3ReaderError
impl Unpin for S3ReaderError
impl UnwindSafe for S3ReaderError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more