Struct dilla_renderer::renderer::RendererWrapper
source · pub struct RendererWrapper {
pub body: String,
pub head: String,
pub style: String,
pub system_stylesheet: String,
pub system_javascript_src: IndexMap<String, Value>,
pub stylesheet: String,
pub javascript_src: IndexMap<String, Value>,
system_javascript: String,
javascript: String,
}
Expand description
Wrap the Render to build the HTML markup.
Fields§
§body: String
§head: String
§style: String
§system_stylesheet: String
Global libraries provided by the design system.
system_javascript_src: IndexMap<String, Value>
§stylesheet: String
§javascript_src: IndexMap<String, Value>
§system_javascript: String
§javascript: String
Implementations§
source§impl RendererWrapper
impl RendererWrapper
pub fn new() -> Self
pub fn add_body(&mut self, body: &str)
pub fn add_body_nl(&mut self, body: &str)
pub fn add_head(&mut self, head: &str)
pub fn add_style(&mut self, style: &str)
pub fn add_system_stylesheet(&mut self, stylesheet: &str)
pub fn add_system_javascript(&mut self, script: &str)
pub fn add_system_javascript_src(&mut self, script_url: &str, data: Value)
pub fn add_stylesheet(&mut self, stylesheet: &str)
pub fn add_javascript(&mut self, script: &str)
pub fn add_javascript_src(&mut self, script_url: &str, data: Value)
fn build_system_library(&mut self) -> &mut Self
fn build_bubbable(&mut self, bubbable: Bubbable) -> &mut Self
Trait Implementations§
source§impl Debug for RendererWrapper
impl Debug for RendererWrapper
source§impl Default for RendererWrapper
impl Default for RendererWrapper
source§fn default() -> RendererWrapper
fn default() -> RendererWrapper
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl RefUnwindSafe for RendererWrapper
impl Send for RendererWrapper
impl Sync for RendererWrapper
impl Unpin for RendererWrapper
impl UnwindSafe for RendererWrapper
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