#[derive(Debug, Clone)]
pub struct Snippet {
pub title: Option<Annotation>,
pub footer: Vec<Annotation>,
pub slices: Vec<Slice>,
}
#[derive(Debug, Clone)]
pub struct Slice {
pub source: String,
pub line_start: usize,
pub origin: Option<String>,
pub annotations: Vec<SourceAnnotation>,
pub fold: bool,
}
#[derive(Debug, Clone, Copy)]
pub enum AnnotationType {
Error,
Warning,
Info,
Note,
Help,
}
#[derive(Debug, Clone)]
pub struct SourceAnnotation {
pub range: (usize, usize),
pub label: String,
pub annotation_type: AnnotationType,
}
#[derive(Debug, Clone)]
pub struct Annotation {
pub id: Option<String>,
pub label: Option<String>,
pub annotation_type: AnnotationType,
}