Struct dilla_renderer::renderable::Renderable
source · pub struct Renderable {
attributes: Attribute,
data: Map<String, Value>,
fields: Map<String, Value>,
output: String,
renderable_type: RenderableType,
component_name: String,
component_template: String,
template_source: String,
element_tag: String,
element_content: String,
}
Expand description
This struct represents a renderable object.
Fields§
§attributes: Attribute
§data: Map<String, Value>
§fields: Map<String, Value>
§output: String
§renderable_type: RenderableType
§component_name: String
Component: Name of the component, used to resolve template.
component_template: String
Component: Template name of the component.
template_source: String
§element_tag: String
§element_content: String
Implementations§
source§impl Renderable
impl Renderable
pub fn add_attr(&mut self, name: &str, class: String)
pub fn output(&self) -> String
pub fn build(&mut self) -> &mut Self
pub fn build_with_env( &mut self, env: &mut Environment<'_>, ctx: Value ) -> &mut Self
fn render_with_env(&mut self, env: &mut Environment<'_>, ctx: Value)
fn render(&mut self)
fn render_element(&mut self)
fn render_component(&mut self, env: &mut Environment<'_>, ctx: Value) -> String
fn render_template(&mut self, env: &mut Environment<'_>, ctx: Value) -> String
fn set_type_from_data(&mut self)
fn set_renderable_values(&mut self)
fn set_type(&mut self, renderable_type: RenderableType)
fn set_tag(&mut self, tag: String)
fn set_attributes(&mut self, attributes: Attribute)
fn set_fields(&mut self)
fn set_element_tag(&mut self)
fn set_element_content(&mut self, env: &mut Environment<'_>)
fn set_element_content_string(&mut self)
fn set_element_attributes(&mut self)
sourcepub fn link(href: &str, attrs: &Value) -> Self
pub fn link(href: &str, attrs: &Value) -> Self
Shortcut to generate a specific link
HTML tag with Element.
sourcepub fn script(src: &str, attrs: &Value) -> Self
pub fn script(src: &str, attrs: &Value) -> Self
Shortcut to generate a specific script
HTML tag with Element.
fn set_template_source(&mut self)
fn set_component_name(&mut self)
fn set_component_template(&mut self)
fn set_component_attributes(&mut self)
Trait Implementations§
source§impl Clone for Renderable
impl Clone for Renderable
source§fn clone(&self) -> Renderable
fn clone(&self) -> Renderable
Returns a copy of the value. Read more
1.0.0 · 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 Renderable
impl Debug for Renderable
source§impl Default for Renderable
impl Default for Renderable
source§fn default() -> Renderable
fn default() -> Renderable
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for Renderable
impl<'de> Deserialize<'de> for Renderable
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
source§impl From<Renderable> for Value
impl From<Renderable> for Value
source§fn from(renderable: Renderable) -> Self
fn from(renderable: Renderable) -> Self
Converts to this type from the input type.
source§impl From<Value> for Renderable
impl From<Value> for Renderable
source§impl Html for Renderable
impl Html for Renderable
fn to_html_string(&self) -> String
Auto Trait Implementations§
impl RefUnwindSafe for Renderable
impl Send for Renderable
impl Sync for Renderable
impl Unpin for Renderable
impl UnwindSafe for Renderable
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