Overview Introduction Pieces of Tokio Introduction From out previous chat in zulip we talk about the content in the notes Some of the open question is how Tokio expand the macros on top of the main function, and tests, so I make some research and this is the result
2/21/2023Table of Content Reference Mentor available Mentor Contacted Reference Most of the mentors that I found are listed in the following web page https://rustbeginners.github.io/awesome-rust-mentors/ Mentor available The first mentor that I find on the following web page https://rustbeginners.github.io/awesome-rust-mentors/ are
2/8/2023[ ] Move the error message:from:4 | async_fn() | ^^^^^^^^^^ expected u8, found opaque type to:4 | async_fn() | ^^^^^^^^^^ expected `u8`, found future [x] move the note message: from:note: while checking the return type of the `async fn` --> test.rs:2:28
2/7/2023PR: https://github.com/rust-lang/rust/pull/103902 original reason: implied bounds for hir typeck fn foo<'a>() { let x = |x: &'_ &'a ()| { // ^^^^^^^^^^ inside of the closure, we know `'a: '_`. body }; }
1/21/2023