Draft: Make `OwnedValue` a type alias for `Value<'static>`
See #138
Currently failing to compile zbus
due to it lacking the
impl<'de> Deserialize<'de> for OwnedValue
implementation. That
conflicts with the implementation for Value
, but the Value
version
fails in this case if 'de
doesn't live as long as 'static
...
Not sure what to do about that.
Edited by Ian Douglas Scott