Type Alias KeyValue
pub type KeyValue = KeyValue<'static, Owned>;Available on crate feature
alloc only.Expand description
Key-value pair with owned value (Send-safe, for IPC).
Aliased Type§
pub struct KeyValue {
pub key: String,
pub value: Value,
}Fields§
§key: StringThe attribute key (name).
value: ValueThe attribute value.