pub enum UploadError {
AlreadyExists,
ParseHeader {
name: String,
source: Error,
},
TooLarge {
size: u64,
max: u64,
},
Cancelled(Error),
InternalServer(Error),
}
Expand description
Errors that could occur during upload
Variants§
AlreadyExists
an upload already exists with the same id
ParseHeader
error parsing {name}
header
TooLarge
file is too large ({size} > {max})
Cancelled(Error)
upload was cancelled
InternalServer(Error)
internal server error
Trait Implementations§
Source§impl Debug for UploadError
impl Debug for UploadError
Source§impl Display for UploadError
impl Display for UploadError
Source§impl Error for UploadError
impl Error for UploadError
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<Error> for UploadError
impl From<Error> for UploadError
Source§impl From<TypedHeaderRejection> for UploadError
impl From<TypedHeaderRejection> for UploadError
Source§fn from(rej: TypedHeaderRejection) -> Self
fn from(rej: TypedHeaderRejection) -> Self
Converts to this type from the input type.
Source§impl IntoResponse for UploadError
impl IntoResponse for UploadError
Source§fn into_response(self) -> Response
fn into_response(self) -> Response
Create a response.
Auto Trait Implementations§
impl Freeze for UploadError
impl RefUnwindSafe for UploadError
impl Send for UploadError
impl Sync for UploadError
impl Unpin for UploadError
impl UnwindSafe for UploadError
Blanket Implementations§
Source§impl<T> ApiErrorExt for T
impl<T> ApiErrorExt for T
Source§fn into_response_with_code(self, code: StatusCode) -> Response
fn into_response_with_code(self, code: StatusCode) -> Response
Consume the error and convert it to a
Response
with the specified
StatusCode
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