Ryo Hirayama

Results 78 comments of Ryo Hirayama

https://github.com/hbina/smolset should be nice for this.

I've added `let` in type syntax, then we should add the functionality to typeinfer.

I found it at https://github.com/tomaka/glutin/blob/6a3ee2af759cf803d787cf6dcbafcdcc4e0243cd/src/lib.rs#L150.

I almost had opened an issue with the same problem with title, "making a variant with `panic!()` in async fn's body causes a compile error" ==== The issue body ====...

As the mention on the issue, I should provide a test data that emits error without this changes and ok with this change. I prefer the FromStr one, because `Message`...

I've marked this as non-draft since the base change is merged now. I've tried to reproduce https://github.com/mattsse/chromiumoxide/issues/167#issuecomment-1676157559 but failed, and I've not found any specific test case that ensures that...

I've implemented `Deserialize` without additional allocation using the `RawValue` feature in serde_json. I left the `FromStr` implementation because it's better in performance and error reporting than the `Deserialize` impl.

I also start forking at https://github.com/ryo33/rust-tools.nvim-nightly-. But I don't recommend this to most people because I don't mind my fork being broken by eagerly merging many pull-requests without my own...

I got the same error on the latest git version, and the `tokio::time::sleep(Duration::from_millis(1000)).await;` trick also resolves mine.