pub enum ContentUploadRunError {
Backend(CloudBackendError),
Store(CloudFilesStoreError),
Contract(CloudFilesCoreError),
RecordNotFound,
}Expand description
Product-neutral failure while driving one durable upload record.
Variants§
Backend(CloudBackendError)
The product-owned remote upload adapter failed.
Store(CloudFilesStoreError)
The durable upload store or immutable snapshot reader failed.
Contract(CloudFilesCoreError)
A source, backend, or durable record violated the upload contract.
RecordNotFound
The requested operation has no durable upload record.
Trait Implementations§
Source§impl Clone for ContentUploadRunError
impl Clone for ContentUploadRunError
Source§fn clone(&self) -> ContentUploadRunError
fn clone(&self) -> ContentUploadRunError
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ContentUploadRunError
impl Debug for ContentUploadRunError
Source§impl Display for ContentUploadRunError
impl Display for ContentUploadRunError
Source§impl Error for ContentUploadRunError
impl Error for ContentUploadRunError
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<CloudBackendError> for ContentUploadRunError
impl From<CloudBackendError> for ContentUploadRunError
Source§fn from(source: CloudBackendError) -> Self
fn from(source: CloudBackendError) -> Self
Converts to this type from the input type.
Source§impl From<CloudFilesCoreError> for ContentUploadRunError
impl From<CloudFilesCoreError> for ContentUploadRunError
Source§fn from(source: CloudFilesCoreError) -> Self
fn from(source: CloudFilesCoreError) -> Self
Converts to this type from the input type.
Source§impl From<CloudFilesStoreError> for ContentUploadRunError
impl From<CloudFilesStoreError> for ContentUploadRunError
Source§fn from(source: CloudFilesStoreError) -> Self
fn from(source: CloudFilesStoreError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ContentUploadRunError
impl PartialEq for ContentUploadRunError
impl Eq for ContentUploadRunError
impl StructuralPartialEq for ContentUploadRunError
Auto Trait Implementations§
impl Freeze for ContentUploadRunError
impl RefUnwindSafe for ContentUploadRunError
impl Send for ContentUploadRunError
impl Sync for ContentUploadRunError
impl Unpin for ContentUploadRunError
impl UnwindSafe for ContentUploadRunError
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