From https://docs.rs/serde_json/1.0.68/serde_json/fn.to_string_pretty.html:  I assume that if I call ```rust use serde_json::*; to_string_pretty<Value>(...); ``` I can `.unwrap()` this result safely, is it right? Or `Value`'s implementation of `Serialize` might decide to fail? If it's the former, can I make a PR adding this piece of info to this doc page?