Why You Shouldn’t Build Your Next App in Rust

Поділитися
Вставка
  • Опубліковано 31 тра 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/blog/why-is-buil...
    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?

КОМЕНТАРІ • 277

  • @warpdotdev
    @warpdotdev  Рік тому +54

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

    • @challow90221
      @challow90221 Рік тому +3

      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 Рік тому +282

    Get ready for a Primeagen reaction

  • @CodingWithLewis
    @CodingWithLewis Рік тому +117

    "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 11 місяців тому +1

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

    • @eamonburns9597
      @eamonburns9597 4 місяці тому

      @@lakshitgupta3025 Still waiting...

  • @kirglow4639
    @kirglow4639 Рік тому +142

    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 11 місяців тому +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 10 місяців тому

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

    • @32zim32
      @32zim32 10 місяців тому +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 10 місяців тому +10

      @@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 10 місяців тому +2

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

  • @TON-vz3pe
    @TON-vz3pe 5 місяців тому +8

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

  • @gotbread2
    @gotbread2 Рік тому +101

    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 Рік тому +15

      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 10 місяців тому

      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 7 місяців тому +1

      That sounds like a lot of headaches.

  • @jaysistar2711
    @jaysistar2711 10 місяців тому +79

    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 10 місяців тому +13

      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 10 місяців тому +3

      sister you genius

    • @AshishSinghh
      @AshishSinghh 7 місяців тому +1

      like Golang?

    • @jaysistar2711
      @jaysistar2711 7 місяців тому +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 5 місяців тому +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 Рік тому +24

    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!)

  • @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 5 місяців тому +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 5 місяців тому

      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.)

  • @hakuna_matata_hakuna
    @hakuna_matata_hakuna 9 місяців тому +8

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

  • @th3mon
    @th3mon 7 місяців тому +4

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

  •  6 місяців тому +5

    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.

  • @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...

  • @michaelschnell5633
    @michaelschnell5633 4 місяці тому

    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.

  • @CramBL
    @CramBL 6 місяців тому +3

    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 3 місяці тому

      Why you don't use for this brainfuck?

  • @luiscarlosjayk
    @luiscarlosjayk 2 місяці тому

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

  • @naczu
    @naczu 5 місяців тому +6

    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 🤣

  • @HyperFocusMarshmallow
    @HyperFocusMarshmallow 10 місяців тому +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 5 місяців тому

      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 5 місяців тому

      @@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. 👍

  • @LiliumAtratum
    @LiliumAtratum 8 місяців тому

    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.

  • @Milky____
    @Milky____ Рік тому

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

  • @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 6 місяців тому

      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)

  • @codetothemoon
    @codetothemoon 10 місяців тому +7

    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

  • @ZoroastrianCowboy
    @ZoroastrianCowboy 5 місяців тому

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

  • @gunnarbernstein9363
    @gunnarbernstein9363 Місяць тому +1

    The video is much better than the catchy title suggest

  • @Alex-hr2df
    @Alex-hr2df 5 місяців тому +4

    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 5 місяців тому

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

    • @rafaeldasilveira9860
      @rafaeldasilveira9860 4 місяці тому

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

  • @martingeorgiev999
    @martingeorgiev999 9 місяців тому +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.

  • @DaviAreias
    @DaviAreias Рік тому +10

    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

  • @gertjanvandenbroek1620
    @gertjanvandenbroek1620 8 місяців тому +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.🦀

  • @MartiQwx
    @MartiQwx 5 місяців тому

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

  • @kinggeorges625
    @kinggeorges625 4 місяці тому +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 2 місяці тому

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

    • @svenyboyyt2304
      @svenyboyyt2304 2 місяці тому

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

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

  • @magnusmarkling
    @magnusmarkling Рік тому

    Very well informed video!

  • @a314
    @a314 8 місяців тому +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 😅

  • @shankrunch
    @shankrunch Рік тому +1

    Like the explanation of OOP in UI rendering

    • @warpdotdev
      @warpdotdev  Рік тому +1

      Hope the animation helped 👍

  • @okonkwo.ify18
    @okonkwo.ify18 3 дні тому

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

  • @EduardKaresli
    @EduardKaresli 7 місяців тому +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.

  • @wesleyhamilton6262
    @wesleyhamilton6262 9 місяців тому +3

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

    • @lardosian
      @lardosian 8 місяців тому

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

  • @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 10 місяців тому

      @@BboyKeny Thumbs up for mentioning Leptos!

  • @mozescodes6618
    @mozescodes6618 8 місяців тому

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

  • @principleshipcoleoid8095
    @principleshipcoleoid8095 Рік тому +2

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

  • @Yupppi
    @Yupppi 6 місяців тому

    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.

  • @ShiNijuuAKL
    @ShiNijuuAKL 6 місяців тому

    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

  • @ivanandraschko6330
    @ivanandraschko6330 4 місяці тому

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

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

  • @Xaxxus
    @Xaxxus 5 місяців тому +1

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

  • @juanjosecruzortiz111
    @juanjosecruzortiz111 4 місяці тому +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 3 місяці тому

      this is what tauri does

  • @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!

  • @andrewgr144
    @andrewgr144 11 місяців тому +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 4 місяці тому

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

  • @SaberRiryi
    @SaberRiryi 3 місяці тому

    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.

  • @user-sp4fz1gw9w
    @user-sp4fz1gw9w 8 місяців тому

    Thanks for explaining Rust

  • @gro967
    @gro967 5 місяців тому

    Would be great to compare it to something modern in web development not something like React that has so many essential issues, where the main one is the whole render model...

  • @Ccb780
    @Ccb780 Рік тому +3

    Are we gui yet? Close enough...

  • @tacorevenge87
    @tacorevenge87 3 місяці тому

    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.

  • @Shaunmcdonogh-shaunsurfing
    @Shaunmcdonogh-shaunsurfing Рік тому +1

    Great video.

  • @filko3578
    @filko3578 27 днів тому

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

  • @mib32
    @mib32 10 місяців тому

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

  • @yongkangchia1993
    @yongkangchia1993 7 місяців тому +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

  • @donwinston
    @donwinston 4 місяці тому

    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

  • @LugayiziIsma
    @LugayiziIsma 3 місяці тому

    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 🎉

  • @Christobanistan
    @Christobanistan 3 дні тому

    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.

  • @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.

  • @menzoberranzam
    @menzoberranzam Місяць тому

    Excellent video!

  • @brianbrian3031
    @brianbrian3031 9 місяців тому

    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 6 місяців тому

    ECS outside of gamedev. Is this a dream?

  • @taylorworthington9394
    @taylorworthington9394 3 місяці тому

    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.

  • @oglothenerd
    @oglothenerd 6 місяців тому +1

    Why is Warp, a terminal, proprietary!?

  • @timschannel247
    @timschannel247 Місяць тому

    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.

  • @victorpinasarnault9135
    @victorpinasarnault9135 Рік тому

    What about Zig language?

  • @carina_akaia
    @carina_akaia 7 місяців тому

    I'm learning Dioxus at the moment

  • @kamertonaudiophileplayer847
    @kamertonaudiophileplayer847 4 місяці тому

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

  • @FineWine-v4.0
    @FineWine-v4.0 9 місяців тому

    Then I guess we need to wait for Iced

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

  • @RAJA-di5qj
    @RAJA-di5qj Рік тому

    Thanks teacher🇮🇳

  • @SalmanKhanCodingboy
    @SalmanKhanCodingboy 5 місяців тому

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

  • @DougLopes
    @DougLopes 7 місяців тому

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

  • @Holobrine
    @Holobrine 5 місяців тому

    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

  • @nukularius
    @nukularius 4 місяці тому

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

    • @alarie0
      @alarie0 3 місяці тому

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

  • @DeviantFox
    @DeviantFox 10 місяців тому

    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.

  • @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 7 місяців тому +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 7 місяців тому +1

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

  • @mwezi10
    @mwezi10 Рік тому +1

    cool video

  • @AshishSinghh
    @AshishSinghh 7 місяців тому

    So rust is basically golang without garbage collector?

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

  • @saysthetedd
    @saysthetedd Рік тому +1

    We need more sandwiches in modern UI tbh

  • @ardwetha
    @ardwetha 4 місяці тому

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

  • @okonkwo.ify18
    @okonkwo.ify18 3 дні тому

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

  • @swedishpsychopath8795
    @swedishpsychopath8795 7 місяців тому +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.

  • @EbonySeraphim
    @EbonySeraphim 5 місяців тому

    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.

  • @NoNamePerson18
    @NoNamePerson18 9 місяців тому +1

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

  • @chudchadanstud
    @chudchadanstud 5 місяців тому

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

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

  • @Virgoblack97
    @Virgoblack97 2 місяці тому

    Why don’t you guys open source your GUI

  • @user-qr4jf4tv2x
    @user-qr4jf4tv2x 8 місяців тому +1

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

  • @AdamFiregate
    @AdamFiregate 5 місяців тому

    Ok. Now Let's Get Rusty. 😊

  • @mattcurrington4499
    @mattcurrington4499 8 місяців тому

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

  • @js-ny2ru
    @js-ny2ru 3 місяці тому +2

    The title of this video is misleading. Also React is not a language.

  • @SianaGearz
    @SianaGearz 5 місяців тому

    sudo make me a sammich UI object

  • @christianm4906
    @christianm4906 7 місяців тому

    I've been attempting to find compelling reasons to learn Rust, but it seems to be a challenging programming language in many practical aspects. It will likely be another unsuccessful effort to replace C and C++.

  • @salehgeberty
    @salehgeberty 5 місяців тому

    👍

  • @GintsPolis
    @GintsPolis 10 місяців тому

    Subject is so confusing.