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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
//---------------------------------------------------------------------------------------------------- Use
//use anyhow::{bail,ensure,Error};
//use log::{info,error,warn,trace,debug};
use ;
use crate*;
use *;
use ;
use ;
use ;
//---------------------------------------------------------------------------------------------------- Album
/// Struct holding [`Album`] metadata, with pointers to an [`Artist`] and [`Song`]\(s\)
///
/// This struct holds all the metadata about a particular [`Album`].
///
/// It contains an [`ArtistKey`] that is the index of the owning [`Artist`], in the [`Collection`].
///
/// It also contains [`SongKey`]\(s\) that are the indicies of [`Song`]\(s\) belonging to this [`Album`], in the [`Collection`].
//impl Default for Album {
// fn default() -> Self {
// Self {
// title: String::new(),
// artist: ArtistKey::default(),
// release_human: String::new(),
// length_human: HumanTime::unknown(),
// song_count_human: HumanNumber::new(),
// songs: vec![],
// release: (None, None, None),
// length: 0.0,
// song_count: 0,
// disc_count: 0,
// art: Art::Unknown,
// art_bytes: None,
// compilation: false,
// }
// }
//}
//---------------------------------------------------------------------------------------------------- TESTS
//#[cfg(test)]
//mod tests {
// #[test]
// fn _() {
// }
//}