Skip to main content

sort_governor/
lib.rs

1#![doc = include_str!("../README.md")]
2
3mod config;
4mod engine;
5mod error;
6mod plan;
7mod service;
8mod snapshot;
9mod spec;
10
11pub use config::SorterConfig;
12pub use engine::SortSession;
13pub use error::SorterError;
14pub use plan::{
15    SortPlan,
16    SortPlanner,
17};
18pub use service::{
19    MemoryPressure,
20    SortLease,
21    SorterHandle,
22    SorterStats,
23    StaticPressure,
24};
25pub use snapshot::SorterSnapshot;
26pub use spec::SortSpec;