Enum dropbox_sdk::files::WriteError [−][src]
#[non_exhaustive]
pub enum WriteError {
MalformedPath(MalformedPathError),
Conflict(WriteConflictError),
NoWritePermission,
InsufficientSpace,
DisallowedName,
TeamFolder,
OperationSuppressed,
TooManyWriteOperations,
Other,
}
dbx_files
only.Variants (Non-exhaustive)
This enum is marked as non-exhaustive
MalformedPath(MalformedPathError)
The given path does not satisfy the required path format. Please refer to the Path formats documentation for more information.
Tuple Fields of MalformedPath
Conflict(WriteConflictError)
Couldn’t write to the target path because there was something in the way.
Tuple Fields of Conflict
The user doesn’t have permissions to write to the target location.
The user doesn’t have enough available space (bytes) to write more data.
Dropbox will not save the file or folder because of its name.
This endpoint cannot move or delete team folders.
This file operation is not allowed at this path.
There are too many write operations in user’s Dropbox. Please retry this request.
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
Deserialize this value from the given Serde deserializer. Read more
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for WriteError
impl Send for WriteError
impl Sync for WriteError
impl Unpin for WriteError
impl UnwindSafe for WriteError
Blanket Implementations
Mutably borrows from an owned value. Read more