Это видео недоступно.
Сожалеем об этом.

Why You Shouldn’t Build Your Next App in Rust

Поделиться
HTML-код
  • Опубликовано: 14 авг 2024
  • In this video, we will explore why programming a UI in Rust is so hard and what are some of the possible solutions if you are looking to build an app in the Rust programming language. 🦀👩‍💻
    You see Rust being talked about EVERYWHERE and for good reason. Something that isn't so obvious is how hard it is to create a User Interface (UI) with it.
    We will look at how Rust’s unique memory management model and lack of inheritance make it difficult to use traditional object-oriented programming patterns for UI development. We will also see how some Rust frameworks and libraries are trying to overcome these difficulties by using different approaches, such as functional programming, entity-component-systems, immediate mode GUI, and even the DOM.
    If you are interested in learning more about Rust and UI programming, this video is for you!
    Written Version 📝
    www.warp.dev/b...
    LINKS
    -----
    Try Warp now for FREE 👉 bit.ly/warpdotdev
    Twitter 🐦
    / warpdotdev
    TikTok 📱
    / warp.dev
    TIMESTAMPS
    ---
    0:00 Why Rust is Loved
    0:34 What Makes Rust So Unique?
    1:45 How UI Programming (Usually) Works
    2:46 How Rust Makes This Hard
    4:21 Attempting UI Design with Rust
    5:34 How We Are Tackling Rust with UI
    6:10 ELM Architecture
    7:26 Entity Component Structure
    7:58 How We Are Building UI
    9:03 What Are Your Thoughts?

Комментарии • 302

  • @warpdotdev
    @warpdotdev  Год назад +57

    Are you using Rust to build UI? 🤔 Let us know!

    • @challow90221
      @challow90221 Год назад +4

      I’m just starting to know the language… so are you saying that rust isn’t up friendly?

    • @warpdotdev
      @warpdotdev  Год назад +12

      @@challow90221 Rust is awesome and you should learn it! It's just in the early stages of building UI :)

    • @challow90221
      @challow90221 Год назад +4

      @@warpdotdev thanks. I meant to say “UI” not “up” lol I’m glad you figured out my blunder.

    • @matthiskalble3621
      @matthiskalble3621 Год назад +2

      Yes, and it is quite pleasant imo, for example in dioxus you can basically write html in a macro and is just works
      Macros are the backbone as far as my opinions go (generate boilerplate from html like language)

    • @DeathSugar
      @DeathSugar Год назад +6

      > Rust is not OOP
      It is OOP, just don't have regular inheritance.

  • @woozy_deer
    @woozy_deer Год назад +320

    Get ready for a Primeagen reaction

  • @CodingWithLewis
    @CodingWithLewis Год назад +151

    "Imagine having a button that doesn't do anything when you click on it".
    This is how my apps work now

    • @warpdotdev
      @warpdotdev  Год назад +9

      We've all been there....

    • @lakshitgupta3025
      @lakshitgupta3025 Год назад

      Commenting before this comment blows up

    • @principleshipcoleoid8095
      @principleshipcoleoid8095 Год назад +6

      Isn't this better than a button that does do a wrong thing when clicked, but only sometimes?

    • @callbettersaul
      @callbettersaul Год назад +1

      @@lakshitgupta3025 Still waiting for the comment to blow up.

    • @eamonburns9597
      @eamonburns9597 7 месяцев назад

      @@lakshitgupta3025 Still waiting...

  • @kirglow4639
    @kirglow4639 Год назад +156

    Lack of inheritance puts no restrictions on how UIs are built. If anything, there's more and more trend towards getting rid of inheritance and OOP in general (take react hooks for example). What's challenging in Rust is sharing of mutable data. If 2 components can modify the same view / same data (e.g. clicking menu icon can open a menu, and clicking close button or overlay can close the menu), that means both components need mutable references to the same data, which is disallowed in Rust. This is solved, usually through RefCell or something like it, but it's not as easy as in other languages, though I'd say every UI framework has already come up with good solutions for this and many have decent DX. I don't think the argument about inheritance makes any sense, and criticizing one example of trait implementation doesn't lead to a general conclusion that Rust is too limited for building UIs in any way. Rust doesn't have less capabilities than other languages, but Rust has less magic and fewer ways of shooting yourself in the foot. If you want to understand and fully control the memory and speed of your application, I'd say Rust is actually preferable.

    • @kaihsiangju
      @kaihsiangju Год назад +3

      As you said, the issue is that it is not as easy as in other languages, so you have to come up with different approaches, which is the main point of this video explaining why it is difficult and how to resolve it.

    • @32zim32
      @32zim32 Год назад

      Rust is not too limited but it is not suitable for building UIs. That's correct?

    • @32zim32
      @32zim32 Год назад +5

      Inheritance is very very handy when designing such systems and rust just throws it away and don't give you any good alternatives to do it. I think the core team and many fans of rust are just haters of OOP and they will never agree that sometimes OOP is really useful. They just throw it away completely without giving you any good alternatives

    • @kirglow4639
      @kirglow4639 Год назад +11

      @@32zim32 no. Rust is perfectly suitable for building UIs. If you want more magic and less control, Rust might not be the best option, but if you want more control over speed and memory, Rust is a great option. Even that is not exactly correct, because Rust has libraries that abstract away low level details and give you a lot of magic instead. So, Rust is good in either case, just beware that Rust gives you more control that you may not be used to.

    • @32zim32
      @32zim32 Год назад +2

      @@kirglow4639 time will show. Right know we don't have mature rust UI libraries with big success stories

  • @TON-vz3pe
    @TON-vz3pe 8 месяцев назад +30

    Isn't this a click bait? You didn't explain why we shouldn't use Rust and started explaining all Rust features.

    • @jameszack7158
      @jameszack7158 Месяц назад

      Welcome to internet

    • @michaelbeasley4923
      @michaelbeasley4923 Месяц назад +1

      She explained this using an example comparing react to rust. Just because you didn't understand the explanation doesn't mean it's not there.

  • @gotbread2
    @gotbread2 Год назад +105

    This is ironically a common Trend I see in more complex rust programs. Using owning relations gets prevented by the borrow checker, so people invent this "index into an array" method, to circumvent the borrow checker. Issue is, then you kinda reinvented pointers, only that the rust system does not "know" about them and thus cannot check them. This also means there is no mechanism preventing you from accidentally using the wrong index into the array. This is similar to the memory bugs rust tries to avoid, just one level higher.

    • @Speykious
      @Speykious Год назад +7

      You can only use the wrong index into an array if you remove elements in a way that everything after the removed element has to be moved. But with normal pointers, it also happens when your vec is reallocated. There's still a problem being solved.

    • @gotbread2
      @gotbread2 Год назад +2

      @@Speykious If each element had a vector of pointers to their child elements, you can remove elements safely and still be sure that the tree structure is not damaged.

    • @kirglow4639
      @kirglow4639 Год назад +16

      It's not the same as pointers in that you won't experience undefined behavior. You can argue that panics are just as bad, but that's the whole thing about Rust: it only guarantees lack of UB, not panics.

    • @HyperFocusMarshmallow
      @HyperFocusMarshmallow Год назад

      I mean, rust has pointers if you want them. It just requires unsafe to dereference them.
      If someone does a lot of stuff just using a method taking an index, why not just use a reference with a lifetime straight up? I guess it takes people a few weeks or months to get that if they come from programming languages that don’t have lifetimes, but still.

    • @christianm4906
      @christianm4906 10 месяцев назад +1

      That sounds like a lot of headaches.

  • @jaysistar2711
    @jaysistar2711 Год назад +84

    Rust does not "lack" object oriented programming. It supports it in almost the same way that C++ does, even with multiple inheiritance. Instead of "extending" a class, you just have another struct as a member. To make the "derived" class act like one of it's members, impl the Deref trait to allow it to be borrowed. This use is what the Fyrox game engine uses. Please don't make it more difficult to find Rust programmers for hire buy discourraging its use. We need more Rust programmers.

    • @khatdubell
      @khatdubell Год назад +15

      Exactly.
      OOP is about keeping functions that operate on data, with that data.
      Its about dealing with data at a higher level of abstraction (the interface or trait) rather than directly manipulating it yourself.
      Rust supports this.

    • @AbuAl7sn1
      @AbuAl7sn1 Год назад +3

      sister you genius

    • @AshishSinghh
      @AshishSinghh 9 месяцев назад +1

      like Golang?

    • @jaysistar2711
      @jaysistar2711 9 месяцев назад +2

      @@AshishSinghh While Go has inheritance by not giving a member a name, Rust gives the member a name and an impl of Deref lets you use the type as if it were another, so Deref is applicable to more than inheritance (the "new-type" pattern, smart pointers, etc.).

    • @TehKarmalizer
      @TehKarmalizer 8 месяцев назад +4

      I’ve never seen anyone mention the Deref trait. Ever. Thank you for mentioning it. It could be so useful.

  • @user-vn9ld2ce1s
    @user-vn9ld2ce1s Год назад +26

    Personally i like the "egui" crate the most. You create UI elements not by creating objects, but by calling functions. Your code sits inside a big closure that is called each frame, therefore your UI is rendered every frame - no need for component management, if you don't want to draw something based on a condition, you just put the drawing call into an `if`.

    • @invinciblemode
      @invinciblemode Год назад +8

      Sounds not performant

    • @user-vn9ld2ce1s
      @user-vn9ld2ce1s Год назад +5

      @@invinciblemode It does take more resources, but for my usecase (mostly simple apps composed of regular widgets and simple drawing into canvas), it's more than fast enough.

    • @thekwoka4707
      @thekwoka4707 Год назад +2

      So basically react but slower?

    • @user-vn9ld2ce1s
      @user-vn9ld2ce1s Год назад +7

      @@thekwoka4707 I don't know if it's faster or slower than React, but since it is native code (or wasm), it won't have the overhead of a JS interpreter. I don't pretend to know how react works, so i'm not to judge.

    • @invinciblemode
      @invinciblemode Год назад +3

      @@user-vn9ld2ce1s this is just a classic case of not everything WASM is better if the architecture is flawed to begin with. Nothing is more performant than JS when it comes to managing UI that uses native browser DOM nodes.
      If you’re not using DOM nodes (think apps like Figma, SketchUp, photoshop, webGL, etc) then WASM brings native desktop level performance to the browser (in those use cases only!)

  • @7h3mon
    @7h3mon 10 месяцев назад +7

    Sorry for nit pick. ReactJS isn’t a programming language -> 3:19

    • @RomanTchekashov
      @RomanTchekashov 2 месяца назад

      It’s a programming language for people who previously used jQuery programming language;))

  • @CritterPop
    @CritterPop 5 месяцев назад +3

    Why don’t you guys open source your GUI

  • @stzi7691
    @stzi7691 Год назад +26

    In the AMIGA days there also was no object oriented Model for doing GUIs, but AMIGA had GUIs, Windows a long time before Microsoft Windows was a thing. There are C-libs for graphics out there like raylib or OpenGL that also need to update alot of events and have to organize that. With C you need to build your own structures and data organization, because C is a very primitive language. So the big picture could yield from the question: How did they do this with those minimal resources, and how can we transfer this to the Rust-world? Another good sort of information would come from game programmers like for instance Casey Muratori. With the object oriented approach you miss the cache alot. So I think a Module based approach is better, like you are already following. A Module that handles all the drawing in the GUI framework can utilize the CPU cache well better, reducing performance-headaches. There are, frankly better, solutions out there that do not need object orientation at all. So it is definitively doable.

    • @chudchadanstud
      @chudchadanstud 8 месяцев назад +2

      And they were all horrible to use. Seriously have you actually used them? Why donyou think they were replaced in the first place

    • @user-uf4rx5ih3v
      @user-uf4rx5ih3v 7 месяцев назад

      Back in the day, most people used terminal applications not gui's. Building actual gui's was extremely painful, time consuming and expensive. The OO model was developed to deal with this problem. Initially OO was used in libraries that constructed objects and methods. This proved to be not so ergonomic and since people thought that gui's are the future, the model was built into languages like objective C, C++, Java and C#.
      Actually, the elm model is quite nice to use. It's not really functional, it didn't come from functional languages but it was easy to implement in functional languages like Haskell. Similarly, I guess it's also convenient in Rust? (I've never built a gui in Rust, so I don't know.)

    • @infeltk
      @infeltk 2 месяца назад

      Amiga first edition 1985. Windows - 1985. Definitely it is not "long time before". LOL

  •  9 месяцев назад +6

    Anything OOP can do, traits can do better.
    The mutability thing is not really a problem in Rust.
    Problems with references and the borrow checker? Use smart pointers. Accessing smart pointers is very performant, like accessing references (without optimizations).
    Iced is amazing, but still lacks many features.

  • @hakuna_matata_hakuna
    @hakuna_matata_hakuna 11 месяцев назад +10

    More content like this please, getting fireship vibes here nice balance of educational and fun

  • @CramBL
    @CramBL 8 месяцев назад +5

    I've not run into these "big headaches" writing GUIs in Rust. Event handling and message passing is so easy in Rust. My GUIs typically use a tree structure and the root component has an event loop where it receives events and dispatches them to sub-components that handle the events that they can handle in their event loops. No need for interior-mutability.

    • @MrChelovek68
      @MrChelovek68 6 месяцев назад

      Why you don't use for this brainfuck?

  • @Christobanistan
    @Christobanistan 2 месяца назад +1

    Traits are interfaces. Rc, Arc, and RefCell exist. If you can't figure out how to make a UI with those tools, you suck at Rust.
    There are tons of Rust UI libs. The way you hide the complexity is by just keeping it inside the library.

  • @naczu
    @naczu 8 месяцев назад +14

    I really don't understand why you compare Rust and React. Rust is low level programming language, React is a js library. How do you compare these two ? I have never seen comparison between C and React or C++ and React. Maybe your next video title will be comparison between HTML and Java 🤣

    • @jooonmantv
      @jooonmantv Месяц назад +1

      i think she wanted to explain the difficulty of building UI design based on Rust. so i guess React is just mentioned in terms of UI design with Rust

    • @nhwhn
      @nhwhn Месяц назад

      didn't. even watch the video and yet you are bitching.

  • @Alex-hr2df
    @Alex-hr2df 7 месяцев назад +5

    I agree on everything in this video. Building GUI with Rust frameworks/tools is over ambitious. Perhaps it's too early for that. I separate FE from BE. I use Go/Rust for BE and React/Flutter for FE - the best so far IMO.

    • @AdamFiregate
      @AdamFiregate 7 месяцев назад +2

      Spot on. I also built separately, FE in JS and BE in Rust.

    • @xshiftyeuw
      @xshiftyeuw 7 месяцев назад

      have you ever tried leptos+htmx (for rust) or templ+htmx (for go)?

    • @greycell2442
      @greycell2442 2 месяца назад

      Rust -> wasm, wasm-pack

    • @Alex-hr2df
      @Alex-hr2df 2 месяца назад

      @@greycell2442
      Overkill for very little gain

  • @DaviAreias
    @DaviAreias Год назад +11

    This is why Tom is a genius and you should build your app on JSDL

    • @saysthetedd
      @saysthetedd Год назад

      We need to stop wearing this joke down to the bone

  • @codetothemoon
    @codetothemoon Год назад +8

    Fantastic video. I’m not sure I fully followed everything, but I think that’s mostly on me. Do you think the issues you raise are those that UI developers have to contend with or just framework developers? I feel like procedural macros fill in some of the gap left by the lack of inheritance

  • @thfsilvab
    @thfsilvab Год назад +19

    I didn't quite catch the relationship between hierarchy in OOP, the component tree (a.k.a. tree data structure), and the lack of inheritance in Rust. It's completely possible to build a tree structure in Rust, just like your example for React or how it's done in Angular. If the lack of a common type is the problem, you can use "dyn Component" which should work as a common trait for all components. I'd appreciate if you could elaborate a bit on this, because the way it's explained in the video might misinform people.

    • @thekwoka4707
      @thekwoka4707 Год назад +1

      Same. I don't get how rust being different is harder...

    • @warpdotdev
      @warpdotdev  Год назад +2

      Hey! Thanks for asking. If you want more technical details and code snippets, check our our written blog here:
      www.warp.dev/blog/why-is-building-a-ui-in-rust-so-hard

    • @thfsilvab
      @thfsilvab Год назад

      @@warpdotdev thank you a lot for clarifying!! The article explains more clearly the problem, and even addressed possible solutions. Coding in Rust is indeed challenging after years of the Java way of OO in the majority of OO languages, while many frameworks do exactly what is described in the article (mutate the base class property for example), many would say it's a bad approach of doing things, and while there are workarounds for that in Rust, I don't think it'd be idiomatic. Awesome work on this!

    • @timwhite1783
      @timwhite1783 8 месяцев назад

      You were a lot more polite than I think I would've been. Was about to point out that class hierarchy is a different concept to the tree like DOM structure react uses. You could implement such a tree like structure in Rust but admittedly there still are some somewhat unwieldy aspects to that due to how borrowing and ownership works in rust (in all likelihood you'll struggle to create a tree which you can modify easily and safely)

  • @wilder6408
    @wilder6408 Год назад +2

    Can you elaborate more on the Entity Component Structure method? What sort of GUI library for Rust does this? Did you have to write up your own?
    If so does this mean other people writing Rust GUI should stick to the Elm-inspired libraries like Iced?

    • @thekwoka4707
      @thekwoka4707 Год назад +2

      Bevy does. And you can do GUI in bevy without it needing to be a game...

  • @tacorevenge87
    @tacorevenge87 6 месяцев назад +1

    As a mathematician I come from c++, python (ML and DL) . Love rust just because ML and DL will need to be productionised at some point.

    • @RuturajZadbuke
      @RuturajZadbuke 2 месяца назад

      Unfortunately Rust Cuda is a bit lacking right now right? Do you know of any good projects that are interfacing with GPUs better?

  • @wesleyhamilton6262
    @wesleyhamilton6262 Год назад +3

    probably a stupid question but why not use something else to build the ui and use rust for everything else ?

    • @lardosian
      @lardosian 11 месяцев назад

      Not a stupid question!
      Maybe the video is trying showcase doing full stack with only Rust.

  • @JReuben111
    @JReuben111 20 дней назад

    I had amazing experience building UI PoCs in Rust
    - Ratatui for TUIs
    - Leptos for WASM webdev
    - bevy for ECS WGPU

  • @kinggeorges625
    @kinggeorges625 7 месяцев назад +1

    Linus Trovald in a recent interview said that, Rust is not used in Linux Kernel as stated at the beginning of this video.
    There’s no need actually to replace C by Rust. Since C is a better language when it comes to interact with hardware

    • @jayachandpranav
      @jayachandpranav 5 месяцев назад

      Bro it's open-source, just take a look

    • @svenyboyyt2304
      @svenyboyyt2304 4 месяца назад

      Rust isn't in the kernel, but it is better.

  • @HyperFocusMarshmallow
    @HyperFocusMarshmallow Год назад +3

    You can do a lot more in rust than is apparent right out of the box. I bet you could theoretically do classes with inheritance using macros and you can use data structure with interior mutability as mentioned in the video or if you really want to you could “unsafe{}” it all and build your own model on top of that. You could even implement a garbage collector if you really wanted to.
    It’s just that rust can give you some nice guarantees if you figure out how to do things according to the safe borrow rules, and to be honest, you might have to do a lot of work to get some of those other things going, on par with designing your own programming language. To be fair, gui libraries are almost that anyway, with how much terminology is required to reason about them.
    There is a lot of experimentation going on in the gui space currently and it’s very fun to follow.
    Even if it might be worth while to wait a bit before betting on rust gui if you want to do anything really serious, I don’t think things will stay that way for long.

    • @user-uf4rx5ih3v
      @user-uf4rx5ih3v 7 месяцев назад

      The thing is that macros are really difficult to use in my opinion. They're best left as "magic" that the programmer doesn't have to think about. What you're proposing is can only work with heavy use of macros and traits, some of the hardest things in the language.

    • @HyperFocusMarshmallow
      @HyperFocusMarshmallow 7 месяцев назад

      @@user-uf4rx5ih3v I think I agree. (Guessing you refer to the part about classes and inheritance). I don’t recall the whole context of why I wrote the comment.
      Using macros can be easy, it can be hard. It depends on the macro. Writing simple ones is quite easy but requires a slightly different skill than using them. Writing macros that would do classes and inheritance… would take some work for sure.
      I’m not advocating that everyone and their grandma should do this on their own in their projects. I’m probably not advocating that people should do it at all.
      But just in principle if someone does write some set of macros that allow code that works like classes with inheritance, you could just add that library to your project and use the macros. Maybe there is a design that would make the user experience easy. At least as easy as the notion of classes and inheritance, which maybe isn’t simple in itself.
      I’m not advocating this. It might be a terrible idea. Probably is.
      You can tell me if it sounds like we agree. 👍

  • @EduardKaresli
    @EduardKaresli 10 месяцев назад +1

    How is writing GUI libraries in Rust more difficult than writing them in plain C? Most GUI libraries were written originally in C, not even in C++, and in C you don't have any OOP.

  • @filko3578
    @filko3578 3 месяца назад +1

    We could also build the UI with Raylib. Doesn't mean we should

  • @andrewgr144
    @andrewgr144 Год назад +1

    I guess I'm just missing the point. If you want to build a user-mode app with a GUI, you use C# or . Why would you even consider Rust or C or C++? I mean, I guess if you're writing code for a super resource-constrained system, but that's a pretty specialized niche.
    Microsoft is using Rust for what it's best at: system level programming. They're doing Azure development in Rust, as well as re-writing some of the Windows system binaries in Rust. And if a developer doesn't want to worry about memory management, they have no business writing a device driver or a kernel binary.
    This just seems like a moot point. It's addressing a straw-man scenario. Or, I guess I should allow for the possibility that the world is a weird place, and there are strange people who do inexplicable things. Are there really people that voluntarily choose to write GUI apps in Rust? What's their motivation? The extra performance simply doesn't matter, at all. On the other hand, is there anyone seriously arguing that Rust isn't a very valid, and perhaps even objectively correct, choice for systems level programming? I mean, I did my share of kernel development in C 25+ years ago, and to this day it's the language that I am most comfortable in, but surely even the most die-hard C or C++ developer would allow that Rust is at least a nice option?

    • @taylrthegreat
      @taylrthegreat 6 месяцев назад

      I want everything written in rust just so we can say it was written in rust

  • @juanjosecruzortiz111
    @juanjosecruzortiz111 7 месяцев назад +1

    I wouldn't want to create a ui in rust, just a backend that returns json data, and I would delegate the front-end to any framework of your choice, React, Vue, Astro, Svelte, Flutter, you name it

    • @alarie0
      @alarie0 5 месяцев назад

      this is what tauri does

    • @midlFidl
      @midlFidl 2 месяца назад

      web is only one kind of GUI

  • @oglothenerd
    @oglothenerd 9 месяцев назад +2

    Why is Warp, a terminal, proprietary!?

  • @gunnarbernstein9363
    @gunnarbernstein9363 3 месяца назад +1

    The video is much better than the catchy title suggest

  • @michaelschnell5633
    @michaelschnell5633 7 месяцев назад

    Currently I am starting to create a VST3 (or maybe Clap) DAW plugin featuring a GUI in Rust.
    Hence the HUI framework needs to get the Window context from the DAW via the plugin API.
    Once I am able to a non-GUI plugin I will start evaluating GUI frameworks, supposedly starting with ICED.

  • @luiscarlosjayk
    @luiscarlosjayk 5 месяцев назад

    Wanted to ask, what do you use to create your videos? (this one looks very cool, congratz)

  • @martingeorgiev999
    @martingeorgiev999 Год назад +3

    Rust probably has more object-oriented features than your average Java clone. There are traits (powerful interfaces) instead of abstract classes, and "inheritance" is achieved through them; that is, every struct that implements a trait X de facto "inherits" it so it can be dynamically dispatched to a trait X object. It's really just a more recent and flexible approach.

  • @arghyadas4138
    @arghyadas4138 Год назад +6

    Found your channel from coding with Lewis and I subscribed 🙌
    The quality of video is 🔥
    The knowledge given is 🔥
    Thanks and bring more content like this

    • @aryanshaw616
      @aryanshaw616 Год назад +2

      Bhai ye uski kuch lgti kya editing quite similar h ?

    • @arghyadas4138
      @arghyadas4138 Год назад

      @@aryanshaw616 baat toh hai
      Kya malum

    • @warpdotdev
      @warpdotdev  Год назад +1

      So glad to hear this. Thank you!

  • @principleshipcoleoid8095
    @principleshipcoleoid8095 Год назад +2

    Honestly I'm not building UI myself. Using Bevy's ui for ui and egui for debug ui tools.

  • @Sleep4Week
    @Sleep4Week 2 месяца назад

    I subscribed because the thumbs up button went all sparkly, not because it's the best sales pitch for rust I've heard to date.

  • @johnnydoey7920
    @johnnydoey7920 Год назад +4

    I agree overall, most of the time and energy is spent on making Rust a good backend or systems programming language instead of a good front end language. Rust feels underdeveloped in this regard

    • @BboyKeny
      @BboyKeny Год назад +2

      I think web assembly is also a bottleneck for this. Although in my opinion leptos and yew are also nice flavours if you know solid or react/next. We might get a really nice full stack solution from Rust.
      Meanwhile the tooling for the frontend is still being innovated on through Rust at the moment.

    • @ironhammer4095
      @ironhammer4095 Год назад

      @@BboyKeny Thumbs up for mentioning Leptos!

  • @Xaxxus
    @Xaxxus 8 месяцев назад +1

    SwiftUI is all built with structs. I imagine you could do something similar in rust.

  • @timschannel247
    @timschannel247 3 месяца назад

    Tauri isnt to bad for Devs, coming from JS background. I have focus to Tauri with Svelte, as it seems to me quite all in one thing to me. If you do perhaps know like QT for C++. I bet, Rust does have something similar. However, I would not blame Rust for being not good for UI, as it probably offers to many confusing ways to do stuff, if you think in a monolith. Even your MVC approach is unsure to me, as it might lead to blowing up the code.

  • @myronkipa2530
    @myronkipa2530 Год назад +1

    5:28 What safety issues are you talking about?

    • @warpdotdev
      @warpdotdev  Год назад +1

      Good question! We talk about some of the safety concerns of using interior mutability in our blog here:
      www.warp.dev/blog/why-is-building-a-ui-in-rust-so-hard

  • @Ccb780
    @Ccb780 Год назад +3

    Are we gui yet? Close enough...

  • @LiliumAtratum
    @LiliumAtratum 11 месяцев назад

    I am a C++ programmer, but I am looking for ways to implement GUI with an ECS as well. I believe it can be done in a way that code is fast, and API is easy for the user.

  • @SaberRiryi
    @SaberRiryi 6 месяцев назад

    What I got from this video, is that if you try to do things the way you did them in React, you'll have a bad time. If you do them the way Rust wants you to, you'll have a good time.

  • @gertjanvandenbroek1620
    @gertjanvandenbroek1620 11 месяцев назад +1

    Interesting take. I'm new to rust and really enjoy it. Now that I've thouroughly indoctrinated in the crustacean ways. I'm in the mood for some criticism and learning about the pitfalls of rust. Most videos I found were just masked rust propaganda or people that didn't seem to get the point of rust.
    Glad to have bumped into this video. This was a breath of fresh air with a well explained and pretty unbiased.
    That gets you a like!
    And the policeman crab with the moustache earned you a sub.🦀

  • @a314
    @a314 11 месяцев назад +1

    ID is the short form of identity. It's ironic that identity ID is used in warp at 8:10 that literally means Identity Identity 😅

  • @donwinston
    @donwinston 7 месяцев назад

    We're evaluating Rust as a possibility in modernizing a huge CLI system written in C and TCL. (It is very very old). So far I've found it to be unfamiliar and difficult. It is not really OO and not really functional. It has no garbage collection. It has very high interest among developers for some reason and is the reason we are considering it because we could more easily attract top software engineers. (Our team is entirely made up of 60ish year olds)

  • @HelloThere-xs8ss
    @HelloThere-xs8ss Год назад +4

    Js is for the Dom and it should stay that way. Each language has its strengths and rusts' is in threading and memory management, along with a few others from what I know now

  • @okonkwo.ify18
    @okonkwo.ify18 2 месяца назад

    Am already learning Rust . It’s hard but worth it . Am already intermediate

  • @bbqchickenrobot3
    @bbqchickenrobot3 2 месяца назад

    Nice video but inheritance and OOP is NOT a cumbersome feature..... we have interfaces (traits) that makes life easy as well. and composition is easier to handle , sure, but just cause other langs offer class inheritance doesn't make it inherently evil

  • @shankrunch
    @shankrunch Год назад +1

    Like the explanation of OOP in UI rendering

    • @warpdotdev
      @warpdotdev  Год назад +1

      Hope the animation helped 👍

  • @Yupppi
    @Yupppi 9 месяцев назад

    I've seen people write an assembly or another language block inside rust code, maybe GUI is best done that way. Like letting rust do what it does the best, run core code really fast and safe, but separating the GUI to something evil rust shouldn't touch. After all, isn't multiple languages in a project a very common thing already? Like most of the time for web stuff you just have to step into the javascript world to save yourself from more pain.

  • @coffee-is-power
    @coffee-is-power Год назад +3

    I'm using rust a lot in the backend, it's a life saver for me. To build uis for the web though... Not so much.
    Also if you need to build desktop apps rust is definitely a good choice to use in the place of c++.

    • @snapcaselled1201
      @snapcaselled1201 Год назад

      what do you mean? backend = web right?

    • @coffee-is-power
      @coffee-is-power Год назад

      @@snapcaselled1201 yes

    • @christianm4906
      @christianm4906 10 месяцев назад +1

      I don't think Rust even comes close to C and C++ in terms of desktop applications for 2024. That situation might change in a decade, or perhaps it will never happen. Just look at the most popular desktop environments for Linux, such as KDE and GNOME; most of them use C and C++ libraries like Qt and GTK. Despite efforts to port these libraries to Rust, it remains-and will likely always be-a second-class language in this domain.

    • @coffee-is-power
      @coffee-is-power 10 месяцев назад +1

      @@christianm4906 people use html, css and js to build UIs, which absolutely sucks, rust still better than that

  • @ZoroastrianCowboy
    @ZoroastrianCowboy 7 месяцев назад

    What about Druid framework for Rust GUIs? Are they any good?

  • @menzoberranzam
    @menzoberranzam 4 месяца назад

    Excellent video!

  • @mbnyc5401
    @mbnyc5401 Месяц назад

    Sounds like a trait is a Oo interface, or abstract class.

  • @ShiNijuuAKL
    @ShiNijuuAKL 9 месяцев назад

    Yeah, during the whole video I was just thinking: ".... we can just do it like elm does" I wasn't expecting ecs tho, even though I got interested in rust because of bevy

  • @MartiQwx
    @MartiQwx 8 месяцев назад

    Both pleasant to watch and listen, and most of all it's spot on topic

  • @Holobrine
    @Holobrine 7 месяцев назад

    The lack of class hierarchy doesn’t mean you can’t organize components in a tree structure, huh? You could easily define a trait with componentDidMount() and similar functions, even a children() function that returns an impl Iterator

  • @Milky____
    @Milky____ Год назад

    I love your channel and look forward to warp, hope it can have cute background imgs like Windows terminal 🙏

  • @kamertonaudiophileplayer847
    @kamertonaudiophileplayer847 6 месяцев назад

    I think Rust object composition clearly works. You good pointed to some potentially problems, but there are no such problems in a reality.

  • @okonkwo.ify18
    @okonkwo.ify18 2 месяца назад

    With traits , I don’t need abstract classes and inheritance . Other programming languages add bunch of rubbish we don’t even need

  • @swedishpsychopath8795
    @swedishpsychopath8795 9 месяцев назад +1

    It is almost as the person in this video doesn't know object oriented programming. It also looks like it doesn't understand how to handle memory allocation.

  • @taylor-worthington
    @taylor-worthington 5 месяцев назад

    It hearkens to a reductive existential contradiction of rust's very safety. Does it mean that one of these methods simply has to "admit" and "embrace" the inevitable? It seems important to choose tools that embrace the inevitable - if it's the inevitable.

  • @EbonySeraphim
    @EbonySeraphim 8 месяцев назад

    I don't think some of the characterizations stated here are true about Rust, and even the implications about programming in general are a little skewed. Rust not being "OOP" is quite far from accurate as it is about as OOP as C++ and Java meaningfully are -- which is to say that programmers who know true OOP know that even C++ and Java don't even qualify. Needing to use another paradigm that isn't "in vogue" with current frameworks shouldn't be considered a bad thing for a software engineer, it is just a different way of modeling the problem. ELM architecture pretty much seems like MVC to me, but I'm far from a real UI dev. ECS is absolutely an approach software engineers should know if they are writing applications where performance matters -- and hint: performance pretty much always matters. The only question is 1) if your company is wise enough to look at CPU/memory costs for servers and know you're leaving a ton of it on the table, or 2) if you have competing (client) software and customers will see how much slower and memory demanding your application runs versus another.
    ECS is very well used in game development as the way "OOP" has made a lot of engineers think about managing data (and indirectly memory) is actually very terribly inefficient when you have multiple subsystems working with the same "object" in your OOP mind, but in reality, the game's subsystems only need to see what they want to see. What I mean is, your game logic has an understand of an entity in the world in terms of gameplay logic and collision detection; the graphics rendering system only cares about the graphics data associated with the object; the sound system only cares about the sound data associated with the object; maybe the netcode doesn't give a crap about the object etc etc. Rather than have a single object "manage" all of it's own stuff as if should maintain all of those references, it's existence is actually defined through those subsystems understanding the association of an identity to the subsystem encapsulated (managed) data. In otherwords, the "Sonic" sprite doesn't reference the fact that it is drawn with "sonic.png," it exists with global ID 112233, and references texture ID 55667 which the graphics resource manager knows was loaded from file "sonic.png" and if you opened in an image editor, you would see the Sonic sprite. It's a classic newbie approach to think that a gameobject "subclass" needs to exist for Sonic, and somewhere in that source code, you'll read the fact that it uses texture "sonic.png." You can make a small game with that approach, but at some level of scale, you'll quickly run into a class explosion and realize how much you're repeating yourself. ECS is also beneficial because it's SoA rather than AoS -- that is, structure of arrays rather than array of structures. When your graphics system needs to rip through 10k objects out of 100k global objects and render those that are visibly relevant, better that it actually runs through an array of 10k relevant objects, than 100k objects through "polymorphism" and 90k objects just have a do nothing render()/draw() method. That's 90k bounces around in memory and your CPU cache is just constantly being trashed.
    The real reason Rust isn't a great langauge today for web GUIs is because it simply isn't mature yet. Javascript pretty much exists soley for the purpose of web UI dev and has been for decades and Rust is just arriving. Rust may not even the best use case for front end stuff, but as a general programming language people would like to prove it so projects don't have so much language + tooling mixing requiring too much knowledge spread for a dev team. Plus it has other benefits, that may pay off in the long run if the up front isn't too high.

  • @Mozescodes
    @Mozescodes 10 месяцев назад

    Omg someone mentioned Elm! I work with Elm quite a headache tbh.

  • @LugayiziIsma
    @LugayiziIsma 5 месяцев назад

    I would very much want to hug wichu for a better understanding of this lang u seem so cool like knowing so much about neural formation of this lang 🎉

  • @DeviantFox
    @DeviantFox Год назад

    This video was fantastic in content but visually a little bothersome. Making text hard to read (script vs plain) and then animating it (pulse) and not leaving it on screen long enough really took away from what you were trying to say imo.

  • @ardwetha
    @ardwetha 7 месяцев назад

    If I can't build my GUI, I will use a TUI.

  • @chudchadanstud
    @chudchadanstud 7 месяцев назад

    The biggest issue is no inheritance. This is what happens when you adopt a fad.
    "Inheritance is bad because it is okay!"

  • @DougLopes
    @DougLopes 10 месяцев назад

    So, instead of inheritance you make composition... I think?

  • @ivanandraschko6330
    @ivanandraschko6330 6 месяцев назад

    I love your content, thank you so much for sharing it,

  • @brianbrian3031
    @brianbrian3031 Год назад

    I was thinking how you could look into the camera while talking so people feel like you are talking to them...
    How about you create a dead zone in the middle of the monitor. Set up your camera in the dead zone. 😊

  • @dr4ghs
    @dr4ghs 8 месяцев назад

    ECS outside of gamedev. Is this a dream?

  • @magnusmarkling
    @magnusmarkling Год назад

    Very well informed video!

  • @AshishSinghh
    @AshishSinghh 9 месяцев назад

    So rust is basically golang without garbage collector?

  • @NoNamePerson18
    @NoNamePerson18 11 месяцев назад +1

    After rust I am fighting significantly less with my gf, now I fight with borrow checker

  • @rossdafodil7931
    @rossdafodil7931 Год назад

    i like warp, but why go the route of accounts? just curious

    • @warpdotdev
      @warpdotdev  Год назад +1

      Hey! Good question.
      The primary reason is that login allows us to build cloud-oriented features that make the terminal have a concept of “your stuff” and “your team’s stuff” - for example Block Sharing. This is the same reason other collaborative apps like Figma and Github require login - identity is the basis of building cloud-native apps.
      That said, we understand the desire to try Warp before logging in, and are exploring product experiences that will allow users to preview Warp before signup.

    • @rossdafodil7931
      @rossdafodil7931 Год назад

      @@warpdotdev that makes a lot of sense. it was always kind of a turn off for me when i was trying warp, but ill def give it another try now that i know its not JUST telemetry.
      thank you very much and keep up the good work

    • @warpdotdev
      @warpdotdev  Год назад

      @@rossdafodil7931 Nice! By the way, our telemetry is opt-out. Here's the documentation on how to disable it, if you want.
      docs.warp.dev/getting-started/privacy#how-to-disable-telemetry-and-crash-reporting

  • @nocodenoblunder6672
    @nocodenoblunder6672 Год назад

    Why did you build warp with rust?

    • @warpdotdev
      @warpdotdev  Год назад +1

      In short, we chose Rust because of its speed and also its strong developer community (for example, using crates.io for package management was a breeze and our entire team onboarded very quickly with tools like Rustlings).
      More importantly, Rust has a pretty extensive platform support--allowing us to write in a single language and then build for Mac, Linux, Windows, and ultimately the web by compiling to WASM.
      If you want to read more about how Warp was built, check our our blog here:
      www.warp.dev/blog/how-warp-works

  • @user-sp4fz1gw9w
    @user-sp4fz1gw9w 11 месяцев назад

    Thanks for explaining Rust

  • @nukularius
    @nukularius 6 месяцев назад

    Egui while complex internally is incredibly simple to use and it's pure rust as far as i know.

    • @alarie0
      @alarie0 5 месяцев назад

      its runs off wgpu or opengl c++ wrappers i think but it is quite well developed

  • @Shaunmcdonogh-shaunsurfing
    @Shaunmcdonogh-shaunsurfing Год назад +1

    Great video.

  • @sawood2010
    @sawood2010 Год назад +1

    I only have Web UI experience, mostly in angular 7-15. Flexibility is the main thing to get from a frame work. Ive worked with symfony/ twig, laravel/ blade, alpineJS, and xamarin.
    I like a framework to handle routing, navigation, etc. But in the end vanilla JS with JSDocs is just best for DOM manipulation. As much as Javascript drives me insane, I always get to a point to where I need plain 'ol Javascript to accomplish something special. If you want a custom ckeditor, then you still have use vanilla JS. Angular 15 compiling to JS still isn't perfect. I'm eyeing Phoenix + AlpineJS for my next project.

  • @victorpinasarnault9135
    @victorpinasarnault9135 Год назад

    What about Zig language?

  • @triforce42
    @triforce42 8 месяцев назад +2

    Are a learner? IGNORE THIS VIDEO. Sorry but this video is completely wrong on several different levels. Inheritance is NOT needed for tree-like structures. Borderline propaganda-like. Who fact-checked this?

  • @yongkangchia1993
    @yongkangchia1993 9 месяцев назад +4

    🎯 Key Takeaways for quick navigation:
    00:31 🧐 Building a graphical user interface (GUI) in Rust is challenging due to Rust's unique features like ownership and mutability rules.
    03:44 🔄 Rust's lack of object-oriented programming makes it difficult to create a top-level component that controls a GUI tree, unlike languages like React.
    06:51 🧠 One solution for Rust GUI development is adopting the ELM architecture, which consists of model, view, and update, or using an entity component system (ECS) architecture.
    08:20 🌐 In Warp, they implement an ECS-style approach with a system that owns components and maps their relationships, providing a way to create a GUI tree without relying on inheritance.
    Made with HARPA AI

  • @myronkipa2530
    @myronkipa2530 Год назад

    Why'd you use it for UI?

    • @warpdotdev
      @warpdotdev  Год назад

      In short, we chose Rust because of its speed and also its strong developer community (for example, using crates.io for package management was a breeze and our entire team onboarded very quickly with tools like Rustlings).
      More importantly, Rust has a pretty extensive platform support--allowing us to write in a single language and then build for Mac, Linux, Windows, and ultimately the web by compiling to WASM.
      If you want to read more about how Warp was built, check our our blog here:
      www.warp.dev/blog/how-warp-works

  • @SalmanKhanCodingboy
    @SalmanKhanCodingboy 8 месяцев назад

    The command line is a tool that is ripe for change.

  • @user-qr4jf4tv2x
    @user-qr4jf4tv2x 11 месяцев назад +1

    game dev and web dev is the thing that will propel rust

  • @saysthetedd
    @saysthetedd Год назад +1

    We need more sandwiches in modern UI tbh

  • @carina_akaia
    @carina_akaia 10 месяцев назад

    I'm learning Dioxus at the moment

  • @JohnSmith-gu9gl
    @JohnSmith-gu9gl 9 месяцев назад +1

    ohh great open source project!
    wait a second...and I am out

  • @lovrodvorski7180
    @lovrodvorski7180 Год назад

    i think you shouldn't swap to camera if you're reading a script, just looks like you have lazy eye, but you're really interesting to listen to otherwise

  • @FineWine-v4.0
    @FineWine-v4.0 Год назад

    Then I guess we need to wait for Iced

  • @agooodolecoder
    @agooodolecoder Месяц назад

    slint ?

  • @AdamFiregate
    @AdamFiregate 7 месяцев назад

    Ok. Now Let's Get Rusty. 😊

  • @mib32
    @mib32 Год назад

    Why you did not went with Electron? I launched Hyper and on startup it takes same amount of memory as Warp

  • @mattcurrington4499
    @mattcurrington4499 11 месяцев назад

    Does this mean you and the warp team regret using Rust to build your app?

  • @SianaGearz
    @SianaGearz 7 месяцев назад

    sudo make me a sammich UI object