hawktracer-parser 0.2.3

Parser library for HawkTracer data format
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod registry;
pub use crate::registry::CoreEventKlassId;
pub use crate::registry::EventKlassRegistry;
pub mod event_reader;
pub use crate::data_struct_reader::ReadEventError;
pub use crate::event_reader::EventReader;
pub mod event;
pub use crate::event::DataType;
pub use crate::event::Event;
pub use crate::event::Value;
pub mod data_provider;
pub mod event_klass;

mod data_struct_reader;
mod registry_updater;