//! Built-in processors for the trace pipeline.
//!
//! Mirrors Python `operonx/core/tracing/processors/`. Each processor takes
//! `Vec<TraceEvent>` and returns a (possibly smaller / mutated) `Vec<TraceEvent>`.
//! Compose by ordering them in `TracePipeline::builder().processor(...)` —
//! execution is left-to-right, every event through every processor.
pub use ;
pub use ;
pub use RedactKeys;
pub use Sample;
pub use TruncateIO;