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