pub struct PageSummaryPage {
pub results: Vec<PageSummary>,
pub next_cursor: Option<String>,
}Expand description
A page of PageSummary records returned by
ConfluenceApi::list_space_pages.
Pagination is not auto-drained: callers receive one page at a time and
pass next_cursor back to fetch the next page. Spaces can contain
thousands of pages, so we avoid buffering the whole inventory in memory.
Fields§
§results: Vec<PageSummary>Pages on this response.
next_cursor: Option<String>Opaque cursor for the next page, when present.
Trait Implementations§
Source§impl Clone for PageSummaryPage
impl Clone for PageSummaryPage
Source§fn clone(&self) -> PageSummaryPage
fn clone(&self) -> PageSummaryPage
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PageSummaryPage
impl Debug for PageSummaryPage
Auto Trait Implementations§
impl Freeze for PageSummaryPage
impl RefUnwindSafe for PageSummaryPage
impl Send for PageSummaryPage
impl Sync for PageSummaryPage
impl Unpin for PageSummaryPage
impl UnsafeUnpin for PageSummaryPage
impl UnwindSafe for PageSummaryPage
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more