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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
pub mod v10;
pub use v10::{IdentityDocumentV10, IdentityDocumentV10Builder, IdentityDocumentV10Stringified};
use crate::*;
#[derive(Clone, Debug, Deserialize, Hash, Serialize, PartialEq, Eq)]
pub enum IdentityDocument {
V10(IdentityDocumentV10),
}
impl Document for IdentityDocument {
type PublicKey = PubKeyEnum;
#[inline]
fn version(&self) -> usize {
match self {
IdentityDocument::V10(idty_v10) => idty_v10.version(),
}
}
#[inline]
fn currency(&self) -> &str {
match self {
IdentityDocument::V10(idty_v10) => idty_v10.currency(),
}
}
#[inline]
fn blockstamp(&self) -> Blockstamp {
match self {
IdentityDocument::V10(idty_v10) => idty_v10.blockstamp(),
}
}
#[inline]
fn issuers(&self) -> SmallVec<[Self::PublicKey; 1]> {
match self {
IdentityDocument::V10(idty_v10) => svec![PubKeyEnum::Ed25519(idty_v10.issuers()[0])],
}
}
#[inline]
fn signatures(&self) -> SmallVec<[<Self::PublicKey as PublicKey>::Signature; 1]> {
match self {
IdentityDocument::V10(idty_v10) => svec![Sig::Ed25519(idty_v10.signatures()[0])],
}
}
#[inline]
fn as_bytes(&self) -> BeefCow<[u8]> {
match self {
IdentityDocument::V10(idty_v10) => idty_v10.as_bytes(),
}
}
}
#[derive(Clone, Debug, Deserialize, Serialize)]
pub enum IdentityDocumentStringified {
V10(IdentityDocumentV10Stringified),
}
impl ToStringObject for IdentityDocument {
type StringObject = IdentityDocumentStringified;
fn to_string_object(&self) -> Self::StringObject {
match self {
IdentityDocument::V10(idty) => {
IdentityDocumentStringified::V10(idty.to_string_object())
}
}
}
}