static_fragments:带有 Rust 语言动态内容的预编译模板

时间:2024-07-10 08:05:56
【文件属性】:

文件名称:static_fragments:带有 Rust 语言动态内容的预编译模板

文件大小:14KB

文件格式:ZIP

更新时间:2024-07-10 08:05:56

Rust

静态片段 静态片段是模板引擎的补充,可用于从字符串文字或文件生成预编译模板。 预编译模板的一些好处是: 没有运行时解析。 解析错误成为编译时错误。 静态内容变成静态字符串,动态内容存储在结构体字段中。 编译后不需要任何资源文件。 #如何使用? template! module_name {"Template string"} template! module_name {"Template string"}用于从字符串文字和template_file! module_name {"path/to/template/file"}创建template_file! module_name {"path/to/template/file"} template_file! module_name {"path/to/template/file"}用于从文件中读取它。 以下示例与 Fra


【文件预览】:
static_fragments-master
----.gitignore(20B)
----README.md(3KB)
----Cargo.toml(219B)
----tests()
--------dynamic.rs(814B)
--------static.rs(569B)
----examples()
--------placeholders_string.rs(399B)
--------conditions.rs(661B)
--------hello.txt(17B)
--------generators.rs(908B)
--------placeholders_file.rs(405B)
----LICENSE(1KB)
----src()
--------lib.rs(24KB)
--------utils.rs(14KB)
----.travis.yml(81B)

网友评论