()
| 77 | |
| 78 | thread_local! { |
| 79 | static DLC_SELF_CONTEXT: RefCell<Option<String>> = const { RefCell::new(None) }; |
| 80 | } |
| 81 | |
| 82 | #[derive(Debug)] |
| 83 | pub struct DlcSelfContextGuard { |
| 84 | previous: Option<String>, |
| 85 | } |
| 86 | |
| 87 | #[derive(Clone, Debug)] |
| 88 | pub enum DlcMountSource { |
no test coverage detected