1 2 3 4 5 6
use std::borrow::Cow; pub enum Value<'a> { Serde(Cow<'a, serde_json::Value>), Str(&'a str), }