type ServiceName = Cow<'static, str>;
The service name that the error is from. Used to provide better error message.
enum ServiceName { Borrowed(&'static str), Owned(String), }
Borrowed data.
Owned data.