pub enum UploadBatchFileError {
FileUploadError(FilesError),
}Expand description
Errors that can occur when uploading a batch file.
Variants§
FileUploadError(FilesError)
An error occurred when uploading the file to the API.
Trait Implementations§
Source§impl Debug for UploadBatchFileError
impl Debug for UploadBatchFileError
Source§impl Display for UploadBatchFileError
impl Display for UploadBatchFileError
Source§impl Error for UploadBatchFileError
impl Error for UploadBatchFileError
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<FilesError> for UploadBatchFileError
impl From<FilesError> for UploadBatchFileError
Source§fn from(source: FilesError) -> Self
fn from(source: FilesError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for UploadBatchFileError
impl !RefUnwindSafe for UploadBatchFileError
impl Send for UploadBatchFileError
impl Sync for UploadBatchFileError
impl Unpin for UploadBatchFileError
impl UnsafeUnpin for UploadBatchFileError
impl !UnwindSafe for UploadBatchFileError
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