pub type QeId<'a> = Cow<'a, [u8]>;
pub enum QeId<'a> { Borrowed(&'a [u8]), Owned(Vec<u8>), }
Borrowed data.
Owned data.