pub fn from_str<'a, T: Deserialize<'a>>(input: &'a str) -> Result<T, Error>
Turn a string into a value of T
T
This should technically be T: DeserializeOwned, but the implementation may change in the future
T: DeserializeOwned