About 3,140,000 results
Open links in new tab
  1. Can you make a Windows desktop app in Rust and winapi?

    Dec 19, 2022 · I've got a Windows application with a GUI written in Rust and winapi. Despite its GUI, it behaves like a console application. When the exe file is started, a Command Prompt …

  2. How to make a program that does not display the console window?

    Apr 21, 2015 · When the Rust binaries are linked with the GCC toolchain, to start a program without spawning a command line window we need to pass the -mwindows option to the linker. …

  3. How to focus text_editor in rust Iced - Stack Overflow

    Jan 10, 2025 · I would also like to de focus the editor when I press enter to indicate that the editing of that cell is complete. From what I found, people have forked Iced rs to implement …

  4. How to create a table of custom shapes in iced (Rust GUI …

    Oct 17, 2023 · 0 I'm trying to create a GUI for a board game engine. To that end I'm trying to transform the State (A struct with a grid where game pieces can be) into a rendered grid. I …

  5. Rust Installation on Windows for developing GUI apps

    Some other GUI libraries can be found at awesome-rust. There are bindings to libraries like Qt and Gtk. If you know the windows API, you could also check out the winapi crate. If you want …

  6. Running Rust app without showing the terminal - for MacOS

    Jan 8, 2025 · On macOS, if you open a bare executable file, it is assumed to be a command-line program which should get a terminal. To make a proper GUI application with no terminal, you …

  7. How to send email via Outlook SMTP using OAuth2 in Rust (no …

    Jun 17, 2025 · I’m trying to implement a command-line tool in Rust to send email via Outlook's SMTP using OAuth2 Device Code Flow (in a non-GUI environment). I use the oauth2 and …

  8. How to write a native Mac OS X GUI with Rust? - Stack Overflow

    Jan 12, 2015 · I'm going to write a software using Rust: core written in Rust native Mac OS GUI written in Rust (preferably) or other language Which setup allows that? Is it possible at all? …

  9. Rust egui window size and dark mode - Stack Overflow

    Apr 14, 2022 · Rust egui window size and dark mode Asked 3 years, 8 months ago Modified 1 year, 5 months ago Viewed 7k times

  10. How to display an image in real-time using Rust?

    Dec 11, 2021 · 4 I am trying to write a ray tracer and want to render my image in real time in a GUI window. Basically, I have a buffer: Vec<u8> that is constantly updating. The question is …