xct2cli 0.1.0

Library and CLI for transforming Xcode Instruments .trace bundles (hotspots, callgraphs, annotated disassembly, PMI counters, heap allocations). Apple Silicon.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Streaming parser for `xctrace export --xpath` XML results.

pub mod schema;
pub mod stream;
pub mod value;

pub use schema::Column;
pub use schema::EngineeringType;
pub use schema::Schema;
pub use stream::Node;
pub use stream::RowReader;
pub use stream::RowReaderEvent;
pub use value::Cell;