About 3,180,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 window pops …

  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. Cargo has a …

  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 focus but I was …

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

    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 decided to try and …

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

  6. How to send email via Outlook SMTP using OAuth2 in Rust (no GUI ...

    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 lettre crates to …

  7. 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 to avoid messing …

  8. How can I update app fields from another thread in egui in rust

    Jul 4, 2022 · They both force the gui to update at 60fps. My code example illustrates how to only repaint the GUI on demand (from the thread) or on mouse hover etc., otherwise the egui update function will …

  9. rust - writing iced applications outside of main.rs - Stack Overflow

    Feb 16, 2024 · Rust's naming conventions are pretty standard, and the default compiler settings should be warning you in this case. We generally capitalize struct and enum names and keep modules …

  10. rust - npm run tauri devでGUIアプリが起動しない。 (WSL2・ubuntu)

    Oct 16, 2023 · 解決したい点 Tauriの公式セットアップ方法に則り、 WSL2 (ubuntu22.04) => cargo create-tauri-appでnpm・react・tsでアプリを作成した後、npm i + npm run tauri devでアプリを実行 …