pub fn to_string<T>(value: &T) -> Result<String>where T: Serialize + ?Sized,
Serialize the given value as a String of JSON.
Serialization is performed as specified in RFC 8785.
Serialization can fail if T’s implementation of Serialize fails.
T
Serialize