Struct dropbox_sdk::paper::ListPaperDocsArgs
source · [−]#[non_exhaustive]pub struct ListPaperDocsArgs {
pub filter_by: ListPaperDocsFilterBy,
pub sort_by: ListPaperDocsSortBy,
pub sort_order: ListPaperDocsSortOrder,
pub limit: i32,
}Available on crate feature
dbx_paper 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.filter_by: ListPaperDocsFilterByAllows user to specify how the Paper docs should be filtered.
sort_by: ListPaperDocsSortByAllows user to specify how the Paper docs should be sorted.
sort_order: ListPaperDocsSortOrderAllows user to specify the sort order of the result.
limit: i32Size limit per batch. The maximum number of docs that can be retrieved per batch is 1000. Higher value results in invalid arguments error.
Implementations
sourceimpl ListPaperDocsArgs
impl ListPaperDocsArgs
pub fn with_filter_by(self, value: ListPaperDocsFilterBy) -> Self
pub fn with_sort_by(self, value: ListPaperDocsSortBy) -> Self
pub fn with_sort_order(self, value: ListPaperDocsSortOrder) -> Self
pub fn with_limit(self, value: i32) -> Self
Trait Implementations
sourceimpl Clone for ListPaperDocsArgs
impl Clone for ListPaperDocsArgs
sourcefn clone(&self) -> ListPaperDocsArgs
fn clone(&self) -> ListPaperDocsArgs
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 ListPaperDocsArgs
impl Debug for ListPaperDocsArgs
sourceimpl Default for ListPaperDocsArgs
impl Default for ListPaperDocsArgs
sourceimpl<'de> Deserialize<'de> for ListPaperDocsArgs
impl<'de> Deserialize<'de> for ListPaperDocsArgs
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<ListPaperDocsArgs> for ListPaperDocsArgs
impl PartialEq<ListPaperDocsArgs> for ListPaperDocsArgs
sourcefn eq(&self, other: &ListPaperDocsArgs) -> bool
fn eq(&self, other: &ListPaperDocsArgs) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &ListPaperDocsArgs) -> bool
fn ne(&self, other: &ListPaperDocsArgs) -> bool
This method tests for !=.
sourceimpl Serialize for ListPaperDocsArgs
impl Serialize for ListPaperDocsArgs
impl Eq for ListPaperDocsArgs
impl StructuralEq for ListPaperDocsArgs
impl StructuralPartialEq for ListPaperDocsArgs
Auto Trait Implementations
impl RefUnwindSafe for ListPaperDocsArgs
impl Send for ListPaperDocsArgs
impl Sync for ListPaperDocsArgs
impl Unpin for ListPaperDocsArgs
impl UnwindSafe for ListPaperDocsArgs
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