[][src]Struct dropbox_sdk::sharing::MemberAccessLevelResult

pub struct MemberAccessLevelResult {
    pub access_level: Option<AccessLevel>,
    pub warning: Option<String>,
    pub access_details: Option<Vec<ParentFolderAccessInfo>>,
}

Contains information about a member's access level to content after an operation.

Fields

access_level: Option<AccessLevel>

The member still has this level of access to the content through a parent folder.

warning: Option<String>

A localized string with additional information about why the user has this access level to the content.

access_details: Option<Vec<ParentFolderAccessInfo>>

The parent folders that a member has access to. The field is present if the user has access to the first parent folder where the member gains access.

Trait Implementations

impl Default for MemberAccessLevelResult[src]

impl Debug for MemberAccessLevelResult[src]

impl Serialize for MemberAccessLevelResult[src]

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

Auto Trait Implementations

Blanket Implementations

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]