Struct dropbox_sdk::paper::ListPaperDocsResponse [−][src]
#[non_exhaustive]pub struct ListPaperDocsResponse { pub doc_ids: Vec<PaperDocId>, 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.doc_ids: Vec<PaperDocId>The list of Paper doc IDs that can be used to access the given Paper docs or supplied to
other API methods. The list is sorted in the order specified by the initial call to
docs_list().
cursor: CursorPass the cursor into docs_list_continue() to paginate through all
files. The cursor preserves all properties as specified in the original call to
docs_list().
has_more: boolWill be set to True if a subsequent call with the provided cursor to
docs_list_continue() returns immediately with some results. If set
to False please allow some delay before making another call to
docs_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 ListPaperDocsResponseimpl Send for ListPaperDocsResponseimpl Sync for ListPaperDocsResponseimpl Unpin for ListPaperDocsResponseimpl UnwindSafe for ListPaperDocsResponseBlanket Implementations
Mutably borrows from an owned value. Read more