clankers-data 0.1.1

MCAP logging, replay, and inspection for clankeRS
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! MCAP data logging, replay, and inspection for clankeRS.

pub mod compare;
pub mod inspect;
pub mod log;
pub mod replay;
pub mod sample;
pub mod writer;

pub use compare::{compare_logs, format_compare_report, CompareReport};
pub use inspect::{format_inspect_report, InspectReport, McapLog};
pub use log::McapRecord;
pub use replay::{Replay, ReplayResult, ReplaySummary};
pub use writer::McapWriter;