pub struct MovedPage {
pub id: String,
pub title: String,
pub parent_id: Option<String>,
pub ancestors: Vec<String>,
}Expand description
Updated page metadata returned by ConfluenceApi::move_page.
Fields§
§id: StringPage ID.
title: StringPage title.
parent_id: Option<String>New parent page ID, if the page now has a parent.
ancestors: Vec<String>Ancestor page IDs from root toward the immediate parent.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for MovedPage
impl RefUnwindSafe for MovedPage
impl Send for MovedPage
impl Sync for MovedPage
impl Unpin for MovedPage
impl UnsafeUnpin for MovedPage
impl UnwindSafe for MovedPage
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