Enum dropbox_sdk::common::PathRootError [−][src]
#[non_exhaustive]
pub enum PathRootError {
InvalidRoot(RootInfo),
NoPermission,
Other,
}
This is supported on crate feature
dbx_common
only.Variants (Non-exhaustive)
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
InvalidRoot(RootInfo)
Tuple Fields
0: RootInfo
The root namespace id in Dropbox-API-Path-Root header is not valid. The value of this error is the user’s latest root info.
NoPermission
You don’t have permission to access the namespace id in Dropbox-API-Path-Root header.
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 PathRootError
impl Send for PathRootError
impl Sync for PathRootError
impl Unpin for PathRootError
impl UnwindSafe for PathRootError
Blanket Implementations
Mutably borrows from an owned value. Read more