MCPcopy Create free account
hub / github.com/alignoth/alignoth / Highlight

Interface Highlight

src/highlight.rs:8–11  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6use std::path::PathBuf;
7
8pub(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
13pub(crate) struct VcfHighlight {
14 pub path: PathBuf,

Callers

nothing calls this directly

Implementers 1

highlight.rssrc/highlight.rs

Calls

no outgoing calls

Tested by

no test coverage detected