pub struct ConfluenceAttachmentPage {
pub results: Vec<ConfluenceAttachment>,
pub next_cursor: Option<String>,
}Expand description
A page of attachments returned by ConfluenceApi::list_attachments.
Pagination is not auto-drained: callers receive one page at a time and
pass next_cursor back to fetch the next page. Other v2 list helpers in
this module (e.g. ConfluenceApi::get_labels) auto-drain — attachments
expose the cursor explicitly so MCP/CLI callers can stream very large
attachment lists without buffering everything in memory.
Fields§
§results: Vec<ConfluenceAttachment>Attachments on this page.
next_cursor: Option<String>Opaque cursor for the next page, when present.
Trait Implementations§
Source§impl Clone for ConfluenceAttachmentPage
impl Clone for ConfluenceAttachmentPage
Source§fn clone(&self) -> ConfluenceAttachmentPage
fn clone(&self) -> ConfluenceAttachmentPage
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 ConfluenceAttachmentPage
impl Debug for ConfluenceAttachmentPage
Auto Trait Implementations§
impl Freeze for ConfluenceAttachmentPage
impl RefUnwindSafe for ConfluenceAttachmentPage
impl Send for ConfluenceAttachmentPage
impl Sync for ConfluenceAttachmentPage
impl Unpin for ConfluenceAttachmentPage
impl UnsafeUnpin for ConfluenceAttachmentPage
impl UnwindSafe for ConfluenceAttachmentPage
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