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)
Tuple Fields
The given path does not satisfy the required path format. Please refer to the Path formats documentation for more information.
Conflict(WriteConflictError)
Tuple Fields
Couldn’t write to the target path because there was something in the way.
NoWritePermission
The user doesn’t have permissions to write to the target location.
InsufficientSpace
The user doesn’t have enough available space (bytes) to write more data.
DisallowedName
Dropbox will not save the file or folder because of its name.
TeamFolder
This endpoint cannot move or delete team folders.
OperationSuppressed
This file operation is not allowed at this path.
TooManyWriteOperations
There are too many write operations in user’s Dropbox. Please retry this request.
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
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