pub trait IntoHtmlResult: Sealed {
// Required method
fn into_html_result(self) -> HtmlResult;
}Expand description
A trait to translate into a HtmlResult.
Required Methods§
Sourcefn into_html_result(self) -> HtmlResult
fn into_html_result(self) -> HtmlResult
Performs the conversion.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".