#[non_exhaustive]pub enum UploadSessionLookupError {
NotFound,
IncorrectOffset(UploadSessionOffsetError),
Closed,
NotClosed,
TooLarge,
ConcurrentSessionInvalidOffset,
ConcurrentSessionInvalidDataSize,
PayloadTooLarge,
Other,
}
sync_routes
and 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.
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 UploadSessionLookupError
impl Clone for UploadSessionLookupError
Source§fn clone(&self) -> UploadSessionLookupError
fn clone(&self) -> UploadSessionLookupError
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for UploadSessionLookupError
impl Debug for UploadSessionLookupError
Source§impl<'de> Deserialize<'de> for UploadSessionLookupError
impl<'de> Deserialize<'de> for UploadSessionLookupError
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 UploadSessionLookupError
impl Display for UploadSessionLookupError
Source§impl Error for UploadSessionLookupError
impl Error for UploadSessionLookupError
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 UploadSessionLookupError
impl PartialEq for UploadSessionLookupError
Source§impl Serialize for UploadSessionLookupError
impl Serialize for UploadSessionLookupError
impl Eq for UploadSessionLookupError
impl StructuralPartialEq for UploadSessionLookupError
Auto Trait Implementations§
impl Freeze for UploadSessionLookupError
impl RefUnwindSafe for UploadSessionLookupError
impl Send for UploadSessionLookupError
impl Sync for UploadSessionLookupError
impl Unpin for UploadSessionLookupError
impl UnwindSafe for UploadSessionLookupError
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.