Function from_str_auto
Source pub fn from_str_auto<'a, T>(s: &'a str) -> DeResult<T>
Expand description
The same as from_str but deserialize_any
will deserialize byte string as str if
input bytes are valid UTF-8, otherwise as bytes
Thus making impossible to deserialize advanced Serde
constructs like tagged enums with some penalty for
simpler use cases.