rhai_components 0.5.11

JSX-like syntax extension for Rhai
Documentation
1
2
3
4
5
6
7
8
9
10
use std::sync::Arc;

use rhai::Engine;

use crate::component_syntax::component_registry::ComponentRegistry;

pub struct RhaiTemplateRendererParams {
    pub component_registry: Arc<ComponentRegistry>,
    pub expression_engine: Engine,
}