This repository was archived by the owner on Aug 24, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy patherror.rs
More file actions
69 lines (61 loc) · 1.42 KB
/
Copy patherror.rs
File metadata and controls
69 lines (61 loc) · 1.42 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
//^
//^ HEAD
//^
//> HEAD -> ISSUING
use issuing::{
Issue,
Section
};
//> HEAD -> SYSTEMSTD
use systemstd::Severity;
//> HEAD -> STD
use std::panic::set_hook;
//>
//^ ERROR
//^
//> ERROR -> ENUM
pub enum Error {
UnknownTarget {
name: &'static str
},
NoTargetProvided,
IncorrectLatexArguments
}
//> ERROR -> INTO ISSUE
impl Into<Issue> for Error {
fn into(self) -> Issue {return match self {
Error::UnknownTarget {name} => Issue {
name: "unknown target",
sections: Vec::from([
Section::Code {
extends: Box::new(Section::Cause(format!("unknown target provided"))),
code: name.to_string(),
..
}
]),
..
},
Error::NoTargetProvided => Issue {
name: "target not provided",
sections: Vec::from([
Section::Cause(format!("interpreter target was not provided"))
]),
..
},
Error::IncorrectLatexArguments => Issue {
name: "incorrect arguments for latex",
sections: Vec::from([
Section::Help(format!("usage: `mathsys latex FILE`"))
]),
..
}
}}
}
//> ERROR -> SEVERITY
impl Severity for Error {
type Then = !;
fn done() -> Self::Then {
set_hook(Box::new(|_| ()));
panic!();
}
}