Struct dropbox_sdk::team::TeamFolderListArg
source · [−]#[non_exhaustive]pub struct TeamFolderListArg {
pub limit: u32,
}Available on crate feature
dbx_team only.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.limit: u32The maximum number of results to return per request.
Implementations
sourceimpl TeamFolderListArg
impl TeamFolderListArg
pub fn with_limit(self, value: u32) -> Self
Trait Implementations
sourceimpl Clone for TeamFolderListArg
impl Clone for TeamFolderListArg
sourcefn clone(&self) -> TeamFolderListArg
fn clone(&self) -> TeamFolderListArg
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 TeamFolderListArg
impl Debug for TeamFolderListArg
sourceimpl Default for TeamFolderListArg
impl Default for TeamFolderListArg
sourceimpl<'de> Deserialize<'de> for TeamFolderListArg
impl<'de> Deserialize<'de> for TeamFolderListArg
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<TeamFolderListArg> for TeamFolderListArg
impl PartialEq<TeamFolderListArg> for TeamFolderListArg
sourcefn eq(&self, other: &TeamFolderListArg) -> bool
fn eq(&self, other: &TeamFolderListArg) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &TeamFolderListArg) -> bool
fn ne(&self, other: &TeamFolderListArg) -> bool
This method tests for !=.
sourceimpl Serialize for TeamFolderListArg
impl Serialize for TeamFolderListArg
impl Eq for TeamFolderListArg
impl StructuralEq for TeamFolderListArg
impl StructuralPartialEq for TeamFolderListArg
Auto Trait Implementations
impl RefUnwindSafe for TeamFolderListArg
impl Send for TeamFolderListArg
impl Sync for TeamFolderListArg
impl Unpin for TeamFolderListArg
impl UnwindSafe for TeamFolderListArg
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