Enum dropbox_sdk::team::UserDeleteResult [−][src]
#[non_exhaustive]
pub enum UserDeleteResult {
Success(UserDeleteEmailsResult),
InvalidUser(UserSelectorArg),
Other,
}dbx_team only.Expand description
Result of trying to delete a user’s secondary emails. ‘success’ is the only value indicating that a user was successfully retrieved for deleting secondary emails. The other values explain the type of error that occurred, and include the user for which the error occurred.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
Success(UserDeleteEmailsResult)Describes a user and the results for each attempt to delete a secondary email.
InvalidUser(UserSelectorArg)Specified user is not a valid target for deleting secondary emails.
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 UserDeleteResultimpl Send for UserDeleteResultimpl Sync for UserDeleteResultimpl Unpin for UserDeleteResultimpl UnwindSafe for UserDeleteResultBlanket Implementations
Mutably borrows from an owned value. Read more