Why You Shouldn’t Build Your Next App in Rust

Поделиться
HTML-код
  • Опубликовано: 10 сен 2024

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

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

    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 Год назад +335

    Get ready for a Primeagen reaction

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

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

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

      Welcome to internet

    • @michaelbeasley4923
      @michaelbeasley4923 2 месяца назад +3

      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.

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

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

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

      We've all been there....

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

      Commenting before this comment blows up

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

      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 8 месяцев назад

      @@lakshitgupta3025 Still waiting...

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

    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 Год назад +6

      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 Год назад +12

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

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

    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 Год назад +17

      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 11 месяцев назад +1

      That sounds like a lot of headaches.

  • @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 Год назад +6

      @@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 Год назад +8

      @@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 11 месяцев назад +9

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

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

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

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

    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 5 месяцев назад

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

  • @naczu
    @naczu 9 месяцев назад +16

    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 2 месяца назад +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 2 месяца назад

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

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

    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 10 месяцев назад +1

      like Golang?

    • @jaysistar2711
      @jaysistar2711 10 месяцев назад +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 9 месяцев назад +4

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

  • @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 9 месяцев назад +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 8 месяцев назад

      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 3 месяца назад

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

  • @hakuna_matata_hakuna
    @hakuna_matata_hakuna Год назад +10

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

  • @CramBL
    @CramBL 9 месяцев назад +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 7 месяцев назад

      Why you don't use for this brainfuck?

  • @dalewheat
    @dalewheat 16 дней назад

    Thank you for the eloquent description of the current issues concerning Rust GUI development. I’ve been attempting to learn enough Rust programming techniques to effectively implement it as a standard programming base for my embedded projects, but get a big doss of vertigo when trying to get up to speed on any of the GUI options.

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

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

    Why don’t you guys open source your GUI

  • @Alex-hr2df
    @Alex-hr2df 8 месяцев назад +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 8 месяцев назад +2

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

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

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

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

      Rust -> wasm, wasm-pack

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

      @@greycell2442
      Overkill for very little gain

  • @Christobanistan
    @Christobanistan 3 месяца назад +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.

  • @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 9 месяцев назад

      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)

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

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

  • @codetothemoon
    @codetothemoon Год назад +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

  • @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 Год назад

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

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

    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.

  •  10 месяцев назад +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.

  • @triforce42
    @triforce42 9 месяцев назад +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?

  • @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 3 месяца назад

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

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

    The video is much better than the catchy title suggest

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

    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 6 месяцев назад

      this is what tauri does

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

      web is only one kind of GUI

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

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

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

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

    Bevy and egui work pretty well.

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

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

  • @Freddy78909
    @Freddy78909 13 дней назад

    If Rust doesn't support inheritance, then it's not an OOP language, not based on the textbook definition

  • @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 8 месяцев назад

      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 8 месяцев назад

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

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

  • @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 7 месяцев назад

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

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

    Why is Warp, a terminal, proprietary!?

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

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

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

  • @a314
    @a314 Год назад +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 😅

  • @swedishpsychopath8795
    @swedishpsychopath8795 10 месяцев назад +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.

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

    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)

    • @Freddy78909
      @Freddy78909 13 дней назад

      "for some reason" lol ... I'm trying to figure out the hype around Rust as well. I think it's an ego "bragging rights" thing

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

  • @yongkangchia1993
    @yongkangchia1993 10 месяцев назад +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

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

    Are we gui yet? Close enough...

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

    It seems the entire Rust community is using reverse psychology to up their views. Seriously, is there anything straightforward about Rust? Anything at all?

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

      what is your problem with rust?

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

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

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

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

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

    Like the explanation of OOP in UI rendering

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

      Hope the animation helped 👍

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

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

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

    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.

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

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

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

  • @gertjanvandenbroek1620
    @gertjanvandenbroek1620 Год назад +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.🦀

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

    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.

  • @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 6 месяцев назад

    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 🎉

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

    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.

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

    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

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

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

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

    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

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

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

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

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

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

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

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

    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.

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

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

    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.

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

    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

  • @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 11 месяцев назад +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 11 месяцев назад +1

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

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

    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 9 месяцев назад

    ECS outside of gamedev. Is this a dream?

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

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

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

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

  • @user-sp4fz1gw9w
    @user-sp4fz1gw9w Год назад

    Thanks for explaining Rust

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

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

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

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

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

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

    Very well informed video!

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

    So rust is basically golang without garbage collector?

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

    Excellent video!

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

    I'm learning Dioxus at the moment

  • @js-ny2ru
    @js-ny2ru 6 месяцев назад +4

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

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

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

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

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

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

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

    What about Zig language?

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

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

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

    All this GUI stuff is turning me against Rust.

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

      Well it shouldn’t do. I think part of the problem is that your expectations have been skewed partly due to the misleading title. You should the right tool for the job.

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

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

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

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

    This is actually the opposite of my expectation about Rust.
    The reason why I want to change from kotlin to rust, because I want to use pointer but in a safe way.
    Pointer to a structure or class is better than inheritance..
    Why do you think placing a pointer to the event loop is inefficient?

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

    Then I guess we need to wait for Iced

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

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

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

    While rust isn’t OOP at least according to some criteria in some definitions, it is at least OP. 😜

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

    We need more sandwiches in modern UI tbh

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

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