Enum dropbox_sdk::files::Tag [−][src]
#[non_exhaustive]
pub enum Tag {
UserGeneratedTag(UserGeneratedTag),
Other,
}
This is supported on crate feature
dbx_files
only.Expand description
Tag that can be added in multiple ways.
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.
UserGeneratedTag(UserGeneratedTag)
Tuple Fields
Tag generated by the user.
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
Auto Trait Implementations
impl RefUnwindSafe for Tag
impl UnwindSafe for Tag
Blanket Implementations
Mutably borrows from an owned value. Read more