pub struct TmplHtml {
pub viewer: String,
pub viewer_error: String,
pub viewer_doc_css: String,
pub viewer_highlighting_theme: String,
pub viewer_highlighting_css: String,
pub exporter: String,
pub exporter_doc_css: String,
pub exporter_highlighting_theme: String,
pub exporter_highlighting_css: String,
}
Expand description
Configuration for the HTML exporter feature, deserialized from the configuration file.
Fields§
§viewer: String
§viewer_error: String
§viewer_doc_css: String
§viewer_highlighting_theme: String
§viewer_highlighting_css: String
§exporter: String
§exporter_doc_css: String
§exporter_highlighting_theme: String
§exporter_highlighting_css: String
Trait Implementations§
Source§impl<'de> Deserialize<'de> for TmplHtml
impl<'de> Deserialize<'de> for TmplHtml
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for TmplHtml
impl RefUnwindSafe for TmplHtml
impl Send for TmplHtml
impl Sync for TmplHtml
impl Unpin for TmplHtml
impl UnwindSafe for TmplHtml
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<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more