pub struct PageData {
pub slug: String,
pub title: String,
pub content: String,
pub backlinks: Vec<BacklinkEntry>,
pub is_placeholder: bool,
}Expand description
Full page data returned when loading a page for editing/viewing.
Fields§
§slug: String§title: String§content: String§backlinks: Vec<BacklinkEntry>§is_placeholder: boolTrait Implementations§
Auto Trait Implementations§
impl Freeze for PageData
impl RefUnwindSafe for PageData
impl Send for PageData
impl Sync for PageData
impl Unpin for PageData
impl UnsafeUnpin for PageData
impl UnwindSafe for PageData
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