1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
// SPDX-License-Identifier: Apache-2.0 // Copyright (c) 2026 ReifyDB use reifydb_value::count::Count; #[derive(Debug, Clone, Copy, PartialEq, Eq)] pub struct ReclaimOutcome { pub removed: Count, pub more: bool, } impl ReclaimOutcome { pub const NOTHING: Self = Self { removed: Count::ZERO, more: false, }; }