Struct dropbox_sdk::team::TeamFolderListResult [−][src]
#[non_exhaustive]pub struct TeamFolderListResult { pub team_folders: Vec<TeamFolderMetadata>, pub cursor: String, pub has_more: bool, }
This is supported on crate feature
dbx_team only.Expand description
Result for team_folder_list() and
team_folder_list_continue().
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.team_folders: Vec<TeamFolderMetadata>List of all team folders in the authenticated team.
cursor: StringPass the cursor into team_folder_list_continue() to obtain
additional team folders.
has_more: boolIs true if there are additional team folders that have not been returned yet. An additional
call to team_folder_list_continue() can retrieve them.
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 TeamFolderListResultimpl Send for TeamFolderListResultimpl Sync for TeamFolderListResultimpl Unpin for TeamFolderListResultimpl UnwindSafe for TeamFolderListResultBlanket Implementations
Mutably borrows from an owned value. Read more