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