pub struct SiteRender {
pub title: String,
pub lang: String,
pub base: String,
pub home_href: String,
pub theme: ThemeConfig,
pub search_enabled: bool,
pub access_enabled: bool,
pub access_password: String,
pub password_hint: String,
pub top_nav: Vec<TopNavItem>,
pub nav: Vec<NavItem>,
pub languages: Vec<LanguageOption>,
}Fields§
§title: String§lang: String§base: String§home_href: String§theme: ThemeConfig§search_enabled: bool§access_enabled: bool§access_password: String§password_hint: String§languages: Vec<LanguageOption>Trait Implementations§
Source§impl Clone for SiteRender
impl Clone for SiteRender
Source§fn clone(&self) -> SiteRender
fn clone(&self) -> SiteRender
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 SiteRender
impl Debug for SiteRender
Source§impl PartialEq for SiteRender
impl PartialEq for SiteRender
Source§fn eq(&self, other: &SiteRender) -> bool
fn eq(&self, other: &SiteRender) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for SiteRender
impl StructuralPartialEq for SiteRender
Auto Trait Implementations§
impl Freeze for SiteRender
impl RefUnwindSafe for SiteRender
impl Send for SiteRender
impl Sync for SiteRender
impl Unpin for SiteRender
impl UnsafeUnpin for SiteRender
impl UnwindSafe for SiteRender
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.