[`SymTree`] that was stored to disk and is now `mmap`ed into the process.
| 141 | |
| 142 | /// [`SymTree`] that was stored to disk and is now `mmap`ed into the process. |
| 143 | pub struct MappedSymTree { |
| 144 | tree_ptr: *const ArchivedSymTree, |
| 145 | _mapping: Mmap, |
| 146 | } |
| 147 | |
| 148 | unsafe impl Sync for MappedSymTree {} |
| 149 | unsafe impl Send for MappedSymTree {} |
nothing calls this directly
no outgoing calls
no test coverage detected