| 255 | |
| 256 | #[derive(Debug, PartialEq, Eq, Hash)] |
| 257 | struct Location { |
| 258 | pub kind: FrameKind, |
| 259 | pub func: String, |
| 260 | pub file: Option<String>, |
| 261 | } |
| 262 | |
| 263 | impl Location { |
| 264 | fn matches_filter(&self, filter: &str) -> bool { |
nothing calls this directly
no outgoing calls
no test coverage detected