@@artemartem5336naming intermediate values is hard and this one doesn't work well with results and options. like you'd still have to write ``` let x = (await make_x())?; ``` instead of ``` let x = make_x().await?; ```
@@ovi1326 Man, how to understand this semantically ? make_x().await - is it extension of make_x() result? Is result of make_x() = future? What is future.await ? Field of Future trait?
Great talk Niko. Rust is getting better each day!
Kinda crazy to me to see cve-rs mentioned lol
Dude--that was awesome work!
love it xd
This talk made me more invested in rust after 3 years of partial use. Would love to use it full time.
2:54 "after you children are dead!". Ugh, that escalated quickly.
what is the breathing in the background lol
Finn getting madder at the Async/Await
Async sleep() 😂
lol exactly
"Going to introduce Barbaras intern Alan".. well.. he's Captain Disillusions intern.. I'm now so confused
L..
.m😊
i hate that amazon has infiltrated rust
Why? No different than RHEL paying Kernel devs to do stuff.
??? do you think mercurial is a worst project since facebook “infiltrated” it
Hey rust guys, please make "await future", not "future.await"
It's much better to have it to the right though?
(await (await foo).bar)?.baz
vs
foo.await.bar.await?.baz
@@Mankepanke
let bar = await foo();
let baz = await bar();
this is not javascript, this is rust
@@artemartem5336naming intermediate values is hard and this one doesn't work well with results and options. like you'd still have to write
```
let x = (await make_x())?;
```
instead of
```
let x = make_x().await?;
```
@@ovi1326 Man, how to understand this semantically ?
make_x().await - is it extension of make_x() result?
Is result of make_x() = future? What is future.await ? Field of Future trait?