pub struct PageSummary {
pub id: String,
pub title: String,
pub status: String,
pub parent_id: Option<String>,
pub author_id: Option<String>,
pub created_at: Option<String>,
}Expand description
A summary record for a Confluence page in a space.
Fields§
§id: StringPage ID.
title: StringPage title.
status: StringPage status (e.g. current, archived, draft, trashed).
parent_id: Option<String>Parent page ID, when reported by the API.
Author account ID, when reported by the API.
created_at: Option<String>ISO 8601 creation timestamp, when reported by the API.
Trait Implementations§
Source§impl Clone for PageSummary
impl Clone for PageSummary
Source§fn clone(&self) -> PageSummary
fn clone(&self) -> PageSummary
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 PageSummary
impl Debug for PageSummary
Auto Trait Implementations§
impl Freeze for PageSummary
impl RefUnwindSafe for PageSummary
impl Send for PageSummary
impl Sync for PageSummary
impl Unpin for PageSummary
impl UnsafeUnpin for PageSummary
impl UnwindSafe for PageSummary
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