Enum dropbox_sdk::team::MembersAddJobStatus [−][src]
pub enum MembersAddJobStatus {
InProgress,
Complete(Vec<MemberAddResult>),
Failed(String),
}This is supported on crate feature
dbx_team only.Variants
The asynchronous job is still in progress.
Complete(Vec<MemberAddResult>)The asynchronous job has finished. For each member that was specified in the parameter
MembersAddArg that was provided to members_add(), a
corresponding item is returned in this list.
Failed(String)The asynchronous job returned an error. The string contains an error message.
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 MembersAddJobStatusimpl Send for MembersAddJobStatusimpl Sync for MembersAddJobStatusimpl Unpin for MembersAddJobStatusimpl UnwindSafe for MembersAddJobStatusBlanket Implementations
Mutably borrows from an owned value. Read more