pub struct GeneratedPage {
pub url: String,
pub title: String,
pub html_content: String,
pub metadata: HashMap<String, Value>,
}
Expand description
Generated page
Fields§
§url: String
Page URL path
title: String
Page title
html_content: String
Generated HTML content
metadata: HashMap<String, Value>
Page metadata
Trait Implementations§
Source§impl Clone for GeneratedPage
impl Clone for GeneratedPage
Source§fn clone(&self) -> GeneratedPage
fn clone(&self) -> GeneratedPage
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for GeneratedPage
impl RefUnwindSafe for GeneratedPage
impl Send for GeneratedPage
impl Sync for GeneratedPage
impl Unpin for GeneratedPage
impl UnwindSafe for GeneratedPage
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