Enum dropbox_sdk::file_properties::InvalidPropertyGroupError [−][src]
#[non_exhaustive]
pub enum InvalidPropertyGroupError {
TemplateNotFound(TemplateId),
RestrictedContent,
Path(LookupError),
UnsupportedFolder,
PropertyFieldTooLarge,
DoesNotFitTemplate,
DuplicatePropertyGroups,
Other,
}
dbx_file_properties
only.Variants (Non-exhaustive)
This enum is marked as non-exhaustive
TemplateNotFound(TemplateId)
Tuple Fields
0: TemplateId
Template does not exist for the given identifier.
RestrictedContent
You do not have permission to modify this template.
Path(LookupError)
Tuple Fields
0: LookupError
UnsupportedFolder
This folder cannot be tagged. Tagging folders is not supported for team-owned templates.
PropertyFieldTooLarge
One or more of the supplied property field values is too large.
DoesNotFitTemplate
One or more of the supplied property fields does not conform to the template specifications.
DuplicatePropertyGroups
There are 2 or more property groups referring to the same templates in the input.
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 InvalidPropertyGroupError
impl Send for InvalidPropertyGroupError
impl Sync for InvalidPropertyGroupError
impl Unpin for InvalidPropertyGroupError
impl UnwindSafe for InvalidPropertyGroupError
Blanket Implementations
Mutably borrows from an owned value. Read more