Nicholas Matsakis - Rust 2024 and beyond

แชร์
ฝัง

ความคิดเห็น • 32

  • @rodelias9378
    @rodelias9378 7 หลายเดือนก่อน +13

    Great talk Niko. Rust is getting better each day!

  • @Speykious
    @Speykious 7 หลายเดือนก่อน +40

    Kinda crazy to me to see cve-rs mentioned lol

    • @sirgibsonable
      @sirgibsonable 7 หลายเดือนก่อน +2

      Dude--that was awesome work!

    • @xshady2967
      @xshady2967 7 หลายเดือนก่อน

      love it xd

  • @haloboy777
    @haloboy777 6 หลายเดือนก่อน +2

    This talk made me more invested in rust after 3 years of partial use. Would love to use it full time.

  • @rainerwahnsinn3262
    @rainerwahnsinn3262 3 หลายเดือนก่อน +2

    2:54 "after you children are dead!". Ugh, that escalated quickly.

  • @josefvacek6472
    @josefvacek6472 7 หลายเดือนก่อน +15

    what is the breathing in the background lol

    • @culturedgator
      @culturedgator 7 หลายเดือนก่อน +8

      Finn getting madder at the Async/Await

    • @pramodjingade6581
      @pramodjingade6581 7 หลายเดือนก่อน +15

      Async sleep() 😂

    • @coverinthecar1345
      @coverinthecar1345 5 หลายเดือนก่อน +1

      lol exactly

  • @tubeincompetence
    @tubeincompetence หลายเดือนก่อน +1

    "Going to introduce Barbaras intern Alan".. well.. he's Captain Disillusions intern.. I'm now so confused

  • @stokotov2140
    @stokotov2140 7 หลายเดือนก่อน

    L..
    .m😊

  • @NeotenicApe
    @NeotenicApe 5 หลายเดือนก่อน

    i hate that amazon has infiltrated rust

    • @LibreGlider
      @LibreGlider 5 หลายเดือนก่อน +7

      Why? No different than RHEL paying Kernel devs to do stuff.

    • @jjpp1993
      @jjpp1993 3 หลายเดือนก่อน

      ??? do you think mercurial is a worst project since facebook “infiltrated” it

  • @artemartem5336
    @artemartem5336 7 หลายเดือนก่อน

    Hey rust guys, please make "await future", not "future.await"

    • @Mankepanke
      @Mankepanke 7 หลายเดือนก่อน +27

      It's much better to have it to the right though?
      (await (await foo).bar)?.baz
      vs
      foo.await.bar.await?.baz

    • @artemartem5336
      @artemartem5336 7 หลายเดือนก่อน +1

      @@Mankepanke
      let bar = await foo();
      let baz = await bar();

    • @maximus1172
      @maximus1172 7 หลายเดือนก่อน +24

      this is not javascript, this is rust

    • @ovi1326
      @ovi1326 7 หลายเดือนก่อน +18

      ​​@@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?;
      ```

    • @artemartem5336
      @artemartem5336 7 หลายเดือนก่อน

      @@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?