[][src]Enum dropbox_sdk::sharing::UpdateFolderMemberError

pub enum UpdateFolderMemberError {
    AccessError(SharedFolderAccessError),
    MemberError(SharedFolderMemberError),
    NoExplicitAccess(AddFolderMemberError),
    InsufficientPlan,
    NoPermission,
    Other,
}

Variants

AccessError(SharedFolderAccessError)MemberError(SharedFolderMemberError)NoExplicitAccess(AddFolderMemberError)

If updating the access type required the member to be added to the shared folder and there was an error when adding the member.

InsufficientPlan

The current user's account doesn't support this action. An example of this is when downgrading a member from editor to viewer. This action can only be performed by users that have upgraded to a Pro or Business plan.

NoPermission

The current user does not have permission to perform this action.

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

impl Display for UpdateFolderMemberError[src]

impl Debug for UpdateFolderMemberError[src]

impl Error for UpdateFolderMemberError[src]

impl Serialize for UpdateFolderMemberError[src]

impl<'de> Deserialize<'de> for UpdateFolderMemberError[src]

Auto Trait Implementations

Blanket Implementations

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Typeable for T where
    T: Any

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]