//! Typed FlatBuffers wire codec for threading graph snapshots.
// The generated FlatBuffers bindings are intrinsically `unsafe` (every accessor
// reads from a raw `Table`). This single generated module opts back into
// `unsafe`; hand-written code in this module tree does not use `unsafe`.
pub use decode_threading_snapshot;
pub use encode_threading_snapshot;
pub use threading as fb;
/// FlatBuffers file identifier embedded in every threading graph buffer.
pub const THREADING_GRAPH_FILE_IDENTIFIER: & = b"NTHR";
/// Wire schema version. Bump on breaking changes to `threading_graph.fbs`.
pub const THREADING_GRAPH_SCHEMA_VERSION: u32 = 1;