Struct dropbox_sdk::team::TeamFolderListResult
source · [−]#[non_exhaustive]pub struct TeamFolderListResult {
pub team_folders: Vec<TeamFolderMetadata>,
pub cursor: String,
pub has_more: bool,
}Available 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
sourceimpl Clone for TeamFolderListResult
impl Clone for TeamFolderListResult
sourcefn clone(&self) -> TeamFolderListResult
fn clone(&self) -> TeamFolderListResult
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for TeamFolderListResult
impl Debug for TeamFolderListResult
sourceimpl<'de> Deserialize<'de> for TeamFolderListResult
impl<'de> Deserialize<'de> for TeamFolderListResult
sourcefn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
Deserialize this value from the given Serde deserializer. Read more
sourceimpl PartialEq<TeamFolderListResult> for TeamFolderListResult
impl PartialEq<TeamFolderListResult> for TeamFolderListResult
sourcefn eq(&self, other: &TeamFolderListResult) -> bool
fn eq(&self, other: &TeamFolderListResult) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &TeamFolderListResult) -> bool
fn ne(&self, other: &TeamFolderListResult) -> bool
This method tests for !=.
sourceimpl Serialize for TeamFolderListResult
impl Serialize for TeamFolderListResult
impl Eq for TeamFolderListResult
impl StructuralEq for TeamFolderListResult
impl StructuralPartialEq for TeamFolderListResult
Auto Trait Implementations
impl RefUnwindSafe for TeamFolderListResult
impl Send for TeamFolderListResult
impl Sync for TeamFolderListResult
impl Unpin for TeamFolderListResult
impl UnwindSafe for TeamFolderListResult
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more