#[non_exhaustive]pub enum MembersTransferFormerMembersFilesError {
Show 16 variants
UserNotFound,
UserNotInTeam,
RemovedAndTransferDestShouldDiffer,
RemovedAndTransferAdminShouldDiffer,
TransferDestUserNotFound,
TransferDestUserNotInTeam,
TransferAdminUserNotInTeam,
TransferAdminUserNotFound,
UnspecifiedTransferAdminId,
TransferAdminIsNotAdmin,
RecipientNotVerified,
UserDataIsBeingTransferred,
UserNotRemoved,
UserDataCannotBeTransferred,
UserDataAlreadyTransferred,
Other,
}
sync_routes
and dbx_team
only.Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
UserNotFound
No matching user found. The provided team_member_id, email, or external_id does not exist on this team.
UserNotInTeam
The user is not a member of the team.
RemovedAndTransferDestShouldDiffer
Expected removed user and transfer_dest user to be different.
RemovedAndTransferAdminShouldDiffer
Expected removed user and transfer_admin user to be different.
TransferDestUserNotFound
No matching user found for the argument transfer_dest_id.
TransferDestUserNotInTeam
The provided transfer_dest_id does not exist on this team.
TransferAdminUserNotInTeam
The provided transfer_admin_id does not exist on this team.
TransferAdminUserNotFound
No matching user found for the argument transfer_admin_id.
UnspecifiedTransferAdminId
The transfer_admin_id argument must be provided when file transfer is requested.
TransferAdminIsNotAdmin
Specified transfer_admin user is not a team admin.
RecipientNotVerified
The recipient user’s email is not verified.
UserDataIsBeingTransferred
The user’s data is being transferred. Please wait some time before retrying.
UserNotRemoved
No matching removed user found for the argument user.
UserDataCannotBeTransferred
User files aren’t transferable anymore.
UserDataAlreadyTransferred
User’s data has already been transferred to another 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§
Source§impl Clone for MembersTransferFormerMembersFilesError
impl Clone for MembersTransferFormerMembersFilesError
Source§fn clone(&self) -> MembersTransferFormerMembersFilesError
fn clone(&self) -> MembersTransferFormerMembersFilesError
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl<'de> Deserialize<'de> for MembersTransferFormerMembersFilesError
impl<'de> Deserialize<'de> for MembersTransferFormerMembersFilesError
Source§fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
Source§impl Error for MembersTransferFormerMembersFilesError
impl Error for MembersTransferFormerMembersFilesError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
Source§impl From<MembersTransferFilesError> for MembersTransferFormerMembersFilesError
impl From<MembersTransferFilesError> for MembersTransferFormerMembersFilesError
Source§fn from(parent: MembersTransferFilesError) -> Self
fn from(parent: MembersTransferFilesError) -> Self
Source§impl PartialEq for MembersTransferFormerMembersFilesError
impl PartialEq for MembersTransferFormerMembersFilesError
Source§fn eq(&self, other: &MembersTransferFormerMembersFilesError) -> bool
fn eq(&self, other: &MembersTransferFormerMembersFilesError) -> bool
self
and other
values to be equal, and is used by ==
.impl Eq for MembersTransferFormerMembersFilesError
impl StructuralPartialEq for MembersTransferFormerMembersFilesError
Auto Trait Implementations§
impl Freeze for MembersTransferFormerMembersFilesError
impl RefUnwindSafe for MembersTransferFormerMembersFilesError
impl Send for MembersTransferFormerMembersFilesError
impl Sync for MembersTransferFormerMembersFilesError
impl Unpin for MembersTransferFormerMembersFilesError
impl UnwindSafe for MembersTransferFormerMembersFilesError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
Source§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string
, but without panic on OOM.