pub type CowStr = Cow<'static, str>;
Abstracts from borrow/owned and allows to change implementation without affecting API.
enum CowStr { Borrowed(&'static str), Owned(String), }
Borrowed data.
Owned data.