1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// ============================================================================
// Reverse Scan — Shared Types
// ============================================================================
//
// The bulk of reverse scan logic now lives in `reverse_ctx.rs`.
// This module retains only:
// - `LeafBatchResultBack` enum (used by both `reverse_ctx` and batch strategies)
// - Unit tests for cursor/helper operations
/// Result of processing a single leaf node during reverse batch iteration.
///
/// Each variant maps to a specific action the caller's state machine must take.
// ============================================================================
// Tests
// ============================================================================