Fuyin

Results 6 issues of Fuyin

## Bug Report ### Version ``` └── tonic v0.5.2 └── tonic-build v0.5.2 ``` ### Platform ``` Linux XXX 5.11.0-37-generic #41-Ubuntu SMP Mon Sep 20 16:39:20 UTC 2021 x86_64 x86_64 x86_64...

If the type has `#[serde((try_)from/into = "..")]` attributes, we don't need to add `T: Serialize`/`T: Deserialize` for the generics. The following code will now compile. [playground](https://play.rust-lang.org/?version=stable&mode=debug&edition=2021&gist=f239b1bc3e0d2467bea37b38cc865c77) ```rust extern crate serde;...

The following code doesn't compile. [Playground](https://play.rust-lang.org/?version=stable&mode=debug&edition=2021&gist=b18092dc590b23aef26f009db6e015e7) ```rust extern crate serde; // 1.0.136 extern crate serde_derive; // 1.0.136 use serde::Deserialize; #[derive(Deserialize)] #[serde(try_from = "SS")] struct S { value: T, } #[derive(Deserialize)]...

That's exactly the feature I want, for a better debugging experience and to ease the burden of users having to encode things themselves. (These reasons might not be enough to...

tracked-in-jira

- Fix `iowrite*` in `silly.c` to match the target size. - Fix missing const qualifier in `tiny_set_termios`. - Try to fix some other compile errors caused by the tty driver...

Is it a bug to write `u32` with `iowrite8`? https://github.com/martinezjavier/ldd3/blob/bf49bb48ab3d16e81406953a0c3ae32a1faf534e/misc-modules/silly.c#L213-L220