hitbox_backend/context.rs
1//! Cache operation context.
2//!
3//! Re-exports [`Context`] and [`ReadMode`] from `hitbox-core`.
4//!
5//! In composition backends, context is wrapped in an internal `CompositionContext`
6//! that tracks which cache layer (L1/L2) provided the data. This enables proper
7//! refill behavior when data is found in L2 but missing from L1.
8
9pub use hitbox_core::{Context, ReadMode};