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
//! Error types used throughout the `anda_db_schema` crate.
use Error;
/// A boxed, thread-safe `std::error::Error`.
///
/// This is the canonical error type used by `TryFrom` conversions in this
/// crate, where the conversion may fail for several unrelated reasons.
pub type BoxError = ;
/// Errors produced when building, validating or (de)serializing a schema,
/// a field entry, or a field value.