[][src]Struct dropbox_sdk::sharing::SharedFileMembers

pub struct SharedFileMembers {
    pub users: Vec<UserFileMembershipInfo>,
    pub groups: Vec<GroupMembershipInfo>,
    pub invitees: Vec<InviteeMembershipInfo>,
    pub cursor: Option<String>,
}

Shared file user, group, and invitee membership. Used for the results of list_file_members() and list_file_members_continue(), and used as part of the results for list_file_members_batch().

Fields

users: Vec<UserFileMembershipInfo>

The list of user members of the shared file.

groups: Vec<GroupMembershipInfo>

The list of group members of the shared file.

invitees: Vec<InviteeMembershipInfo>

The list of invited members of a file, but have not logged in and claimed this.

cursor: Option<String>

Present if there are additional shared file members that have not been returned yet. Pass the cursor into list_file_members_continue() to list additional members.

Methods

impl SharedFileMembers[src]

pub fn new(
    users: Vec<UserFileMembershipInfo>,
    groups: Vec<GroupMembershipInfo>,
    invitees: Vec<InviteeMembershipInfo>
) -> Self
[src]

pub fn with_cursor(self, value: Option<String>) -> Self[src]

Trait Implementations

impl Debug for SharedFileMembers[src]

impl Serialize for SharedFileMembers[src]

impl<'de> Deserialize<'de> for SharedFileMembers[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]