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
use crate::BlankId;
use std::fmt;
#[derive(Clone, PartialEq, Eq, Debug)]
pub enum Warning {
EmptyTerm,
BlankNodeIdProperty(BlankId),
KeywordLikeTerm(String),
KeywordLikeValue(String),
MalformedLanguageTag(String, langtag::Error),
MalformedIri(String),
}
impl fmt::Display for Warning {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
match self {
Self::EmptyTerm => write!(f, "empty term"),
Self::BlankNodeIdProperty(id) => {
write!(f, "blank node identifier `{}` is used as property", id)
}
Self::KeywordLikeTerm(term) => write!(f, "term `{}` has the form of a keyword", term),
Self::KeywordLikeValue(value) => {
write!(f, "value `{}` has the form of a keyword", value)
}
Self::MalformedLanguageTag(tag, e) => {
write!(f, "malformed language tag `{}`: {}", tag, e)
}
Self::MalformedIri(value) => write!(f, "invalid IRI `{}`", value),
}
}
}