#[non_exhaustive]pub enum UploadError {
Http(Error),
Io(Error),
Auth(String),
TokenRefresh(String),
PlatformApi {
status: u16,
message: String,
},
Interrupted {
uploaded: u64,
total: u64,
},
FileTooLarge {
size: u64,
max: u64,
},
UnsupportedFormat(String),
Config(String),
Encryption(String),
NoAttempts,
}Expand description
Errors that can occur during video upload.
All variants are non-exhaustive to allow future additions without breaking changes.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Http(Error)
Io(Error)
Auth(String)
TokenRefresh(String)
PlatformApi
Interrupted
FileTooLarge
UnsupportedFormat(String)
Config(String)
Encryption(String)
NoAttempts
Implementations§
Source§impl UploadError
impl UploadError
Sourcepub fn is_retryable(&self) -> bool
pub fn is_retryable(&self) -> bool
Returns true if this error is likely transient and worth retrying.
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
Auto Trait Implementations§
impl Freeze for UploadError
impl !RefUnwindSafe for UploadError
impl Send for UploadError
impl Sync for UploadError
impl Unpin for UploadError
impl UnsafeUnpin for UploadError
impl !UnwindSafe for UploadError
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