#[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 PartialEq<UploadSessionAppendError> for UploadSessionAppendError
impl PartialEq<UploadSessionAppendError> for UploadSessionAppendError
source§fn eq(&self, other: &UploadSessionAppendError) -> bool
fn eq(&self, other: &UploadSessionAppendError) -> bool
self
and other
values to be equal, and is used
by ==
.