elastic-common-schema 8.11.0

Elastic Common Schema (ECS) for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub mod ecs;

#[cfg(test)]
mod tests {
    use crate::ecs;

    #[test]
    fn contains_ecs_version_property() {
        assert_eq!(ecs::ECS_VERSION, "ecs.version");
    }
}