Struct dropbox_sdk::paper::ListPaperDocsResponse
source · [−]#[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
sourceimpl Clone for ListPaperDocsResponse
impl Clone for ListPaperDocsResponse
sourcefn clone(&self) -> ListPaperDocsResponse
fn clone(&self) -> ListPaperDocsResponse
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 ListPaperDocsResponse
impl Debug for ListPaperDocsResponse
sourceimpl<'de> Deserialize<'de> for ListPaperDocsResponse
impl<'de> Deserialize<'de> for ListPaperDocsResponse
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<ListPaperDocsResponse> for ListPaperDocsResponse
impl PartialEq<ListPaperDocsResponse> for ListPaperDocsResponse
sourcefn eq(&self, other: &ListPaperDocsResponse) -> bool
fn eq(&self, other: &ListPaperDocsResponse) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &ListPaperDocsResponse) -> bool
fn ne(&self, other: &ListPaperDocsResponse) -> bool
This method tests for !=.
sourceimpl Serialize for ListPaperDocsResponse
impl Serialize for ListPaperDocsResponse
impl Eq for ListPaperDocsResponse
impl StructuralEq for ListPaperDocsResponse
impl StructuralPartialEq for ListPaperDocsResponse
Auto Trait Implementations
impl RefUnwindSafe for ListPaperDocsResponse
impl Send for ListPaperDocsResponse
impl Sync for ListPaperDocsResponse
impl Unpin for ListPaperDocsResponse
impl UnwindSafe for ListPaperDocsResponse
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