pub type TargetID<'a> = Cow<'a, str>;
pub enum TargetID<'a> { Borrowed(&'a str), Owned(String), }
Borrowed data.
Owned data.