lewp 0.3.0

Say goodbye to the web template hell. Generate your HTML5 website technically optimized and always valid. In your Rust source.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Traits and types necessary for creating a web module.

mod module;
mod runtime;

use std::{cell::RefCell, rc::Rc};

pub use {module::Module, runtime::RuntimeInformation};

/// A collection of modules.
pub type Modules = Vec<ModulePtr>;

/// Wrapper type for a Module instance.
pub type ModulePtr = Rc<RefCell<dyn Module>>;