micromegas_telemetry/
lib.rs

1//! structures and functions common to both analytics and ingestion
2
3#![allow(missing_docs)]
4
5#[cfg(feature = "server")]
6pub mod blob_storage;
7pub mod block_wire_format;
8pub mod compression;
9#[cfg(feature = "server")]
10pub mod property;
11pub mod stream_info;
12pub mod types;
13pub mod wire_format;