| 6 | use std::path::PathBuf; |
| 7 | |
| 8 | pub(crate) trait Highlight { |
| 9 | // Returns a vector of intervals that highlight the given region. Excludes any intervals outside the given region. |
| 10 | fn intervals(&self, region: &Region) -> Result<Vec<Interval>>; |
| 11 | } |
| 12 | |
| 13 | pub(crate) struct VcfHighlight { |
| 14 | pub path: PathBuf, |
nothing calls this directly
no outgoing calls
no test coverage detected