thymeleaf 0.1.0-beta.0

A framework-neutral Thymeleaf-compatible dynamic template engine for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! 占位 stub:对应 Java `web/servlet/IServletWebApplication.java`,当前未移植或评估为 N/A。
//!
//! 当前状态:未移植。理由见模块顶部列表。
//!
//! 修复:调用方已使用等价替代路径(见 layout_approvals.json 与各模块 doc 注释)。

#[allow(dead_code)]
struct i_servlet_web_application;

#[cfg(test)]
mod tests {
    use super::i_servlet_web_application;
    #[test]
    fn placeholder_compiles() {
        // 存在性桩——保证目录 1:1 与 Java 上游镜像
        let _ = i_servlet_web_application;
    }
}