elastic-common-schema 8.11.0

Elastic Common Schema (ECS) for Rust
Documentation
  • Coverage
  • 99.95%
    1858 out of 1859 items documented0 out of 0 items with examples
  • Size
  • Source code size: 461.91 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 47.38 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • danielbcorreia/elastic-common-schema-rs
    1 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • danielbcorreia

Elastic Common Schema for Rust

This crate provides a set of constants generated from the Elastic Common Schema (ECS) for use in Rust projects.

These constants are separated into modules based on the ECS fieldset.

Usage

Add this crate to your Cargo.toml. Note that the version is indexed to the ECS version:

[dependencies]
elastic-common-schema = "8.11.0"

Then use the constants as you wish:

use elastic_common_schema::ecs;

fn main() {
    println!("{}", ecs::http::HTTP_VERSION);
}