1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
// SPDX-FileCopyrightText: 2026 JC-Lab <joseph@jc-lab.net> // // SPDX-License-Identifier: Apache-2.0 //! Per-volume filter device context. use alloc::sync::Arc; use crate::registry::AttachedVolume; pub struct FilterContext { pub volume: Arc<AttachedVolume>, } impl FilterContext { pub fn new(volume: Arc<AttachedVolume>) -> Self { Self { volume } } }