-
for example:
* one
```rs
impl Dentist {
pub fn new() -> Self {
Self {
..Default::default()
}
}
}
impl Into for Dentist {
fn into(self) -> LocalBus…
-
Hi, this is issue is related to missing documentation thus it's not an actual bug report. I would be happy to move this discussion to whatever place is the best.
Actix.rs has no documentation regar…
-
### What is the current *bug* behavior?
It's a well known rough edge that `serde_json`'s arbitary precision feature changes the behavior for _all_ users of the crate; affecting uses of 3rd pa…
-
**Is your feature request related to a problem? Please describe.**
We recently merged which adds a datetime payload index.
Currently, the datetime parser is very strict, only allowing [RFC 3339](…
-
I have a dbase file that contains a Memo field, however I'm not sure what type I should put in the structure, and there doesn't appear to be any way to skip over a field.
```rust
#[derive(serde::D…
-
- [x] I have looked for existing issues (including closed) about this
## Bug Report
### Version
v0.7.4
### Platform
Linux pop-os 6.6.10-76060610-generic
### Description
…
-
want to let users more easily see where deserialise errors comes from.
Ideally you can add [`serde_path_to_error`](https://docs.rs/serde_path_to_error/latest/serde_path_to_error/index.html) and swa…
-
https://github.com/ssbrs/legacy-msg-data/blob/4f0761c58fabd8c41f7f729d02eb38619be1053d/src/cbor/ser.rs#L51
@AljoschaMeyer How do you feel about changing `CborSerilalizer` and `JsonSerializer` to ju…
-
### Component
node-bindings, rpc, other
### What version of Alloy are you on?
├── alloy v0.1.4 │ ├── alloy-core v0.7.7 │ │ ├── alloy-primitives v0.7.7 │ │ │ ├── alloy-rlp v0.3.7 │…
-
The following
```rs
fn main() {
let json = vec![b'"', 128, b' ', b' ', b' ', b'"'];
let e = serde_json::from_slice::(&json).unwrap_err();
println!("serde_json error: {e}");
let…