pyfisch / cbor

CBOR support for serde.
https://docs.rs/serde_cbor/
Apache License 2.0
296 stars 100 forks source link

RawValue support like in serde_json #125

Open drewhk opened 5 years ago

drewhk commented 5 years ago

serde_json has the ability to preserve chunks of unparsed JSON in a RawValue (which can either borrow a slice of the original input or box+copy the bytes verbatim). This is very useful for low-level infrastructure code that pushes envelopes around only parsing part of the message and not the payload itself. I tried to implement this for CBOR using the high level APIs, but it seems like this is impossible without hacking serializer directly as there is no API to write bytes back directly on the serializer.

CobaltCause commented 3 years ago

Wow, this was opened a year ago. Anyway I just ran into needing this feature myself, so I took a stab at implementing it in https://github.com/pyfisch/cbor/pull/211, thought I'd comment in case you or anyone else were still interested in this issue.