Skip to content

Current serde/shims don't parse Vec<u8>, only hex/base64/pem strings #86

Open
@heartsucker

Description

@heartsucker

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())?)
    }
  }
}

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions