#[non_exhaustive]pub enum UploadSessionAppendError {
    NotFound,
    IncorrectOffset(UploadSessionOffsetError),
    Closed,
    NotClosed,
    TooLarge,
    ConcurrentSessionInvalidOffset,
    ConcurrentSessionInvalidDataSize,
    PayloadTooLarge,
    ContentHashMismatch,
    Other,
}dbx_files only.Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
NotFound
The upload session ID was not found or has expired. Upload sessions are valid for 7 days.
IncorrectOffset(UploadSessionOffsetError)
The specified offset was incorrect. See the value for the correct offset. This error may occur when a previous request was received and processed successfully but the client did not receive the response, e.g. due to a network error.
Closed
You are attempting to append data to an upload session that has already been closed (i.e. committed).
NotClosed
The session must be closed before calling upload_session/finish_batch.
TooLarge
You can not append to the upload session because the size of a file should not reach the max file size limit (i.e. 350GB).
ConcurrentSessionInvalidOffset
For concurrent upload sessions, offset needs to be multiple of 4194304 bytes.
ConcurrentSessionInvalidDataSize
For concurrent upload sessions, only chunks with size multiple of 4194304 bytes can be uploaded.
PayloadTooLarge
The request payload must be at most 150 MB.
ContentHashMismatch
The content received by the Dropbox server in this call does not match the provided content hash.
Other
Catch-all used for unrecognized values returned from the server. Encountering this value typically indicates that this SDK version is out of date.
Trait Implementations§
Source§impl Clone for UploadSessionAppendError
 
impl Clone for UploadSessionAppendError
Source§fn clone(&self) -> UploadSessionAppendError
 
fn clone(&self) -> UploadSessionAppendError
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for UploadSessionAppendError
 
impl Debug for UploadSessionAppendError
Source§impl<'de> Deserialize<'de> for UploadSessionAppendError
 
impl<'de> Deserialize<'de> for UploadSessionAppendError
Source§fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
 
fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
Source§impl Display for UploadSessionAppendError
 
impl Display for UploadSessionAppendError
Source§impl Error for UploadSessionAppendError
 
impl Error for UploadSessionAppendError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
 
fn source(&self) -> Option<&(dyn Error + 'static)>
1.0.0 · Source§fn description(&self) -> &str
 
fn description(&self) -> &str
Source§impl From<UploadSessionLookupError> for UploadSessionAppendError
 
impl From<UploadSessionLookupError> for UploadSessionAppendError
Source§fn from(parent: UploadSessionLookupError) -> Self
 
fn from(parent: UploadSessionLookupError) -> Self
Source§impl PartialEq for UploadSessionAppendError
 
impl PartialEq for UploadSessionAppendError
Source§impl Serialize for UploadSessionAppendError
 
impl Serialize for UploadSessionAppendError
impl Eq for UploadSessionAppendError
impl StructuralPartialEq for UploadSessionAppendError
Auto Trait Implementations§
impl Freeze for UploadSessionAppendError
impl RefUnwindSafe for UploadSessionAppendError
impl Send for UploadSessionAppendError
impl Sync for UploadSessionAppendError
impl Unpin for UploadSessionAppendError
impl UnwindSafe for UploadSessionAppendError
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
Source§impl<T> CloneToUninit for Twhere
    T: Clone,
 
impl<T> CloneToUninit for Twhere
    T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
 
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
 
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
 
fn equivalent(&self, key: &K) -> bool
key and return true if they are equal.