pub type Label = (Cow<'static, str>, Cow<'static, str>);
A single label key/value pair.
Both halves are Cow<'static, str> so static literals stay zero-alloc while runtime-derived values are supported transparently.
Cow<'static, str>