Function serde_bencoded::from_str_auto[][src]

pub fn from_str_auto<'a, T>(s: &'a str) -> Result<T> where
    T: Deserialize<'a>, 

The same as from_str but deserialize_any will deserialize byte string as str if input bytes are valid UTF-8, otherwise as bytes

Note

Thus making impossible to deserialize advanced Serde constructs like tagged enums with some penalty for simpler use cases.