1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
use std::fmt::Display;
use crate::{FileID, Span};
use serde::{Deserialize, Serialize};
#[derive(Copy, Clone, Debug, PartialEq, Eq, PartialOrd, Serialize, Deserialize)]
pub enum LabelStyle {
Primary,
Secondary,
}
#[derive(Clone, Debug, PartialEq, Eq, Serialize, Deserialize)]
pub struct Label {
pub file_id: FileID,
pub style: LabelStyle,
pub range: Span,
pub message: String,
}
impl Label {
pub fn primary(file_id: &FileID, range: Span, message: impl Display) -> Self {
Self { file_id: file_id.clone(), style: LabelStyle::Primary, range, message: message.to_string() }
}
pub fn secondary(file_id: &FileID, range: Span, message: impl Display) -> Self {
Self { file_id: file_id.clone(), style: LabelStyle::Secondary, range, message: message.to_string() }
}
}