About 3,430,000 results
Open links in new tab
  1. 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. …

  2. 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 …

  3. 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 …

  4. 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 …

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

  7. 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? …

  8. multithreading - Can someone explain how to open 2 or more …

    Dec 22, 2023 · I want to create some GUI in Rust. Found a library called iced that works well in one window, but sometimes I need to open another. I don't understand how a GUI eventloop …

  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, 6 months ago Viewed 7k times

  10. How do I make a Rust program which can be executed without …

    Mar 31, 2020 · 28 How can I make a program in Rust which can be executed from anywhere without using cargo run, by just clicking on the file? Is there any crate? I have written code for …