Enum dropbox_sdk::sharing::AddFolderMemberError [−][src]
#[non_exhaustive]
pub enum AddFolderMemberError {
Show 14 variants
AccessError(SharedFolderAccessError),
EmailUnverified,
BannedMember,
BadMember(AddMemberSelectorError),
CantShareOutsideTeam,
TooManyMembers(u64),
TooManyPendingInvites(u64),
RateLimit,
TooManyInvitees,
InsufficientPlan,
TeamFolder,
NoPermission,
InvalidSharedFolder,
Other,
}dbx_sharing only.Variants (Non-exhaustive)
This enum is marked as non-exhaustive
AccessError(SharedFolderAccessError)Unable to access shared folder.
This user’s email address is not verified. This functionality is only available on accounts with a verified email address. Users can verify their email address here.
The current user has been banned.
BadMember(AddMemberSelectorError)AddFolderMemberArg::members contains a bad invitation recipient.
Your team policy does not allow sharing outside of the team.
TooManyMembers(u64)The value is the member limit that was reached.
TooManyPendingInvites(u64)The value is the pending invite limit that was reached.
The current user has hit the limit of invites they can send per day. Try again in 24 hours.
The current user is trying to share with too many people at once.
The current user’s account doesn’t support this action. An example of this is when adding a read-only member. This action can only be performed by users that have upgraded to a Pro or Business plan.
This action cannot be performed on a team shared folder.
The current user does not have permission to perform this action.
Invalid shared folder error will be returned as an access_error.
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 AddFolderMemberErrorimpl Send for AddFolderMemberErrorimpl Sync for AddFolderMemberErrorimpl Unpin for AddFolderMemberErrorimpl UnwindSafe for AddFolderMemberErrorBlanket Implementations
Mutably borrows from an owned value. Read more