mirror of
https://github.com/askama-rs/askama.git
synced 2025-09-29 22:11:17 +00:00
11 lines
154 B
Rust
11 lines
154 B
Rust
use askama::Template;
|
|
|
|
#[derive(Template)]
|
|
#[template(source = "a={{ a }} b={{ b }}", ext = "html")]
|
|
union Tmpl {
|
|
a: i32,
|
|
b: u32,
|
|
}
|
|
|
|
fn main() {}
|