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
mod binary;
mod error;
mod external;
mod password;
use std::fmt::{self, Display, Formatter};
pub use binary::Base64;
pub use error::{ParseError, ParseResult};
pub use password::Password;
use serde_json::Value;
use crate::registry::{MetaSchemaRef, Registry};
#[derive(Debug, Copy, Clone, Eq, PartialEq)]
pub enum TypeName {
Normal {
ty: &'static str,
format: Option<&'static str>,
},
Array(&'static TypeName),
}
impl Display for TypeName {
fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
match self {
TypeName::Normal { ty, format } => match format {
Some(format) => write!(f, "{}(${})", ty, format),
None => write!(f, "{}", ty),
},
TypeName::Array(ty) => {
write!(f, "[{}]", ty)
}
}
}
}
pub trait Type: Sized + Send + Sync {
const NAME: TypeName;
const IS_REQUIRED: bool = true;
fn schema_ref() -> MetaSchemaRef;
#[allow(unused_variables)]
fn register(registry: &mut Registry) {}
fn parse(value: Value) -> ParseResult<Self>;
fn parse_from_str(value: Option<&str>) -> ParseResult<Self>;
fn to_value(&self) -> Value;
}