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
use crate::output::OutputId;
impl_id!(pub AliasId, 32, "TODO.");
#[cfg(feature = "serde")]
string_serde_impl!(AliasId);
impl From<OutputId> for AliasId {
fn from(output_id: OutputId) -> Self {
Self::from(output_id.hash())
}
}
impl AliasId {
pub fn or_from_output_id(self, output_id: OutputId) -> Self {
if self.is_null() { Self::from(output_id) } else { self }
}
}
#[cfg(feature = "dto")]
#[allow(missing_docs)]
pub mod dto {
use serde::{Deserialize, Serialize};
use super::*;
use crate::error::dto::DtoError;
#[derive(Clone, Debug, Eq, PartialEq, Serialize, Deserialize)]
pub struct AliasIdDto(pub String);
impl From<&AliasId> for AliasIdDto {
fn from(value: &AliasId) -> Self {
Self(value.to_string())
}
}
impl TryFrom<&AliasIdDto> for AliasId {
type Error = DtoError;
fn try_from(value: &AliasIdDto) -> Result<Self, Self::Error> {
value
.0
.parse::<AliasId>()
.map_err(|_| DtoError::InvalidField("alias id"))
}
}
}