async_mp4/mp4box/
url.rs

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