| 186 | #[derive(Debug)] |
| 187 | #[derive(rkyv::Archive, rkyv::Serialize, rkyv::Deserialize)] |
| 188 | pub struct SymTree { |
| 189 | pub strings: Vec<String>, |
| 190 | pub tree: rkyvtree::Tree<u64, SymRange>, |
| 191 | } |
| 192 | |
| 193 | impl ArchivedSymTree { |
| 194 | fn str_by_ref(&self, idx: StringRef) -> Option<&str> { |
nothing calls this directly
no outgoing calls
no test coverage detected