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

source

pub fn new(data: Map<String, Value>) -> Self

Creates a new Renderable.

source

pub fn add_attr(&mut self, name: &str, class: String)

source

pub fn output(&self) -> String

source

pub fn build(&mut self) -> &mut Self

source

pub fn build_with_env( &mut self, env: &mut Environment<'_>, ctx: Value ) -> &mut Self

source

fn render_with_env(&mut self, env: &mut Environment<'_>, ctx: Value)

source

fn render(&mut self)

source

fn render_element(&mut self)

source

fn render_component(&mut self, env: &mut Environment<'_>, ctx: Value) -> String

source

fn render_template(&mut self, env: &mut Environment<'_>, ctx: Value) -> String

source

fn set_type_from_data(&mut self)

source

fn set_renderable_values(&mut self)

source

fn set_type(&mut self, renderable_type: RenderableType)

source

fn set_tag(&mut self, tag: String)

source

fn set_attributes(&mut self, attributes: Attribute)

source

fn set_fields(&mut self)

source

fn set_element_tag(&mut self)

source

fn set_element_content(&mut self, env: &mut Environment<'_>)

source

fn set_element_content_string(&mut self)

source

fn set_element_attributes(&mut self)

Shortcut to generate a specific link HTML tag with Element.

source

pub fn script(src: &str, attrs: &Value) -> Self

Shortcut to generate a specific script HTML tag with Element.

source

fn set_template_source(&mut self)

source

fn set_component_name(&mut self)

source

fn set_component_template(&mut self)

source

fn set_component_attributes(&mut self)

Trait Implementations§

source§

impl Clone for Renderable

source§

fn clone(&self) -> Renderable

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Renderable

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for Renderable

source§

fn default() -> Renderable

Returns the “default value” for a type. Read more
source§

impl<'de> Deserialize<'de> for Renderable

source§

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

source§

fn from(renderable: Renderable) -> Self

Converts to this type from the input type.
source§

impl From<Value> for Renderable

source§

fn from(v: Value) -> Self

Converts to this type from the input type.
source§

impl Html for Renderable

source§

impl Serialize for Renderable

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<I> FunctionResult for I
where I: Into<Value>,

§

fn into_result(self) -> Result<Value, Error>

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,