1 2 3 4 5 6 7
use crate::Value; impl<'a> From<String> for Value<'a> { fn from(s: String) -> Self { Value::String(s.into()) } }