pub struct PageRender {
pub title: String,
pub route: String,
pub html: String,
pub headings: Vec<Heading>,
pub masked: bool,
pub search: bool,
}Fields§
§title: String§route: String§html: String§headings: Vec<Heading>§masked: bool§search: boolTrait Implementations§
Source§impl Clone for PageRender
impl Clone for PageRender
Source§fn clone(&self) -> PageRender
fn clone(&self) -> PageRender
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 PageRender
impl Debug for PageRender
Source§impl PartialEq for PageRender
impl PartialEq for PageRender
Source§fn eq(&self, other: &PageRender) -> bool
fn eq(&self, other: &PageRender) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for PageRender
impl StructuralPartialEq for PageRender
Auto Trait Implementations§
impl Freeze for PageRender
impl RefUnwindSafe for PageRender
impl Send for PageRender
impl Sync for PageRender
impl Unpin for PageRender
impl UnsafeUnpin for PageRender
impl UnwindSafe for PageRender
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.