pub type TracePayloadT = StrCow;
pub enum TracePayloadT { Borrowed(&'static str), Owned(String), }
Borrowed data.
Owned data.