2 个稳定版本
8.11.0 | 2024年2月9日 |
---|---|
1.10.0 | 2024年2月9日 |
#770 在 数据库接口
465KB
515 行
Rust 的弹性通用模式
此包提供了一组从 弹性通用模式 (ECS) 生成的常量,用于 Rust 项目。
这些常量根据 ECS 字段集划分到不同的模块中。
用法
将此包添加到您的 Cargo.toml
。请注意,版本号与 ECS 版本相对应
[dependencies]
elastic-common-schema = "8.11.0"
然后根据需要使用这些常量
use elastic_common_schema::ecs;
fn main() {
println!("{}", ecs::http::HTTP_VERSION);
}