pub struct HtmlRenderOptions {
pub bandwidth_mode: BandwidthMode,
pub class_prefix: Option<String>,
}Expand description
Options for HTML rendering.
Fields§
§bandwidth_mode: BandwidthModeBandwidth mode controlling adaptive rendering.
class_prefix: Option<String>Optional CSS class prefix to namespace generated classes (e.g. “adk-”).
Trait Implementations§
Source§impl Clone for HtmlRenderOptions
impl Clone for HtmlRenderOptions
Source§fn clone(&self) -> HtmlRenderOptions
fn clone(&self) -> HtmlRenderOptions
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 HtmlRenderOptions
impl Debug for HtmlRenderOptions
Source§impl Default for HtmlRenderOptions
impl Default for HtmlRenderOptions
Source§fn default() -> HtmlRenderOptions
fn default() -> HtmlRenderOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for HtmlRenderOptions
impl RefUnwindSafe for HtmlRenderOptions
impl Send for HtmlRenderOptions
impl Sync for HtmlRenderOptions
impl Unpin for HtmlRenderOptions
impl UnsafeUnpin for HtmlRenderOptions
impl UnwindSafe for HtmlRenderOptions
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