pub type UriData<'a> = DataItem<'a, Uri>;
enum UriData<'a> { Str(&'a str), Bytes(&'a [u8]), Parsed(&'a Uri), }