KeyValue

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: String

The attribute key (name).

§value: Value

The attribute value.