Struct dropbox_sdk::paper::ListUsersOnFolderResponse [−][src]
#[non_exhaustive]pub struct ListUsersOnFolderResponse { pub invitees: Vec<InviteeInfo>, pub users: Vec<UserInfo>, pub cursor: Cursor, pub has_more: bool, }
dbx_paper only.Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.invitees: Vec<InviteeInfo>List of email addresses that are invited on the Paper folder.
users: Vec<UserInfo>List of users that are invited on the Paper folder.
cursor: CursorPass the cursor into docs_folder_users_list_continue()
to paginate through all users. The cursor preserves all properties as specified in the
original call to docs_folder_users_list().
has_more: boolWill be set to True if a subsequent call with the provided cursor to
docs_folder_users_list_continue() returns immediately
with some results. If set to False please allow some delay before making another call to
docs_folder_users_list_continue().
Implementations
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 ListUsersOnFolderResponseimpl Send for ListUsersOnFolderResponseimpl Sync for ListUsersOnFolderResponseimpl Unpin for ListUsersOnFolderResponseimpl UnwindSafe for ListUsersOnFolderResponseBlanket Implementations
Mutably borrows from an owned value. Read more