Skip to main content

Label

Type Alias Label 

Source
pub type Label = (Cow<'static, str>, Cow<'static, str>);
Expand description

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.