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