Function serde_json::value::to_value  
                   
                       [−]
                   
               [src]
pub fn to_value<T: ?Sized>(value: &T) -> Value where T: SerializeShortcut function to encode a T into a JSON Value
use serde_json::to_value; let val = to_value("foo"); assert_eq!(val.as_string(), Some("foo"))