Jonas Bushart
Results
121
comments of
Jonas Bushart
Instead of `serde_bytes` you can also use [`serde_with::Bytes`](https://docs.rs/serde_with/latest/serde_with/struct.Bytes.html) for the same. You can combine it with `Arc` or `Option` however needed. ```rust use serde_with::*; #[serde_as] #[derive(Deserialize, Serialize)] struct Data {...