1 2 3 4 5 6 7 8 9 10
//! The sort plan and the pure planner that chooses it. mod kind; mod planner; #[cfg(test)] mod tests; pub use kind::SortPlan; pub use planner::SortPlanner;