Type Alias KeyValue
pub type KeyValue<'a> = KeyValue<'a, Transient>;Expand description
Key-value pair with transient value (supports format_args!).
Aliased Type§
pub struct KeyValue<'a> {
pub key: &'a str,
pub value: Value<'a>,
}Fields§
§key: &'a strThe attribute key (name).
value: Value<'a>The attribute value.