1use crate::full_box;
2
3full_box! {
4 box (b"urn ", Urn, UrnBox, @save flags: u32) data {
5 name: String,
6 location: String
7 }
8}
9
10impl Default for Urn {
11 fn default() -> Self {
12 Self {
13 name: "".to_string(),
14 location: "".to_string(),
15 flags: 1
16 }
17 }
18}