Open
Description
This is would prevent us from having a serialization format that uses parses bytes directly (and not bytes-that-are-a-string (I think)). This should work:
struct Foo<Vec<u8>>
impl DeserializeOwned for Foo {
fn deserialize<D: Deserializer<'de>>(de: D) -> ::std::result::Result<Self, D::Error> {
let res: Vec<u8> = Deserialize::deserialize(de)
match res {
Ok(x) => Foo(x),
Err(_) => {
let x: String = Deserialize::deserialize(de)?;
Foo(HEXLOWER.decode(x.as_bytes())?)
}
}
}