Click here to Skip to main content
15,887,998 members
Everything / Programming Languages / Rust

Rust

Rust

Great Reads

by Farhad Reza
This tip describes how we can design application interface using Win32 API in Rust Programming language.
by Michael Yuan @WasmEdge
How to use high performance Wasm runtime WasmEdge as a sidecar application runtime for Dapr
by Philipp_Engelmann
Simple Linear Regression from scratch in Rust
by Liu Junfeng
A PEG parser combinator library implemented in Rust, using operator overloading without macros.

Latest Articles

by ChristianNeumanns
Union types (aka sum types, variants, choice types) provide an elegant solution for frequent programming tasks.
by AmrDeveloper
Introduce GQL (A Git Query Language) to perform SQL like queries on .git files
by 1f604
An implementation of b3sum based on io_uring
by raddevus
Get Rust installed, compile and run your first program extremely fast with rustup

All Articles

Sort by Title

Rust 

28 Jul 2023 by AmrDeveloper
Introduce GQL (A Git Query Language) to perform SQL like queries on .git files
5 Jan 2023 by Michael Yuan @WasmEdge
How to use high performance Wasm runtime WasmEdge as a sidecar application runtime for Dapr
15 Dec 2016 by Farhad Reza
This tip describes how we can design application interface using Win32 API in Rust Programming language.
5 Jan 2023 by Michael Sydney Balloni
See how Rust stacks up against C-ish, C++, and C#
5 Jan 2023 by Michael Yuan @WasmEdge
How to create lightweight and high-performance web services in the WebAssembly sandbox, and then deploy them for free on edge cloud provider fly.io.
10 May 2022 by Uncodeable
Let's say I have a for loop like so: for i in 0..array.len() {} How would I go forwards/backward in the for loop? It might look like this: Value of I: 1 > 2 > 3 > 4 > 5 > 3 > 4 > 5 > 6 What I have tried: I've tried reassigning I, but I...
10 May 2022 by CPallini
you might use the reverse iterator of the array, e.g. for i in array.iter().rev() { //.. }
7 Jul 2017 by Member 13290915
Hello, I'm developer of the anti-cheat for the game and I need stop procces by original name... I add photos: https://ctrlv.cz/shots/2017/07/03/fjm8.png[^] PLEASE HELP !!! (VB.NET code please...) -Majniik_ What I have tried: I tried stop by process ID and stop process Application.exe, when...
3 Jul 2017 by David_Wimbley
I used Code Converter[^] to convert this C# code foreach (Process process in Process.GetProcessesByName(YourProcessNameHere.exe)) { if (process.Id != current.Id) { process.Kill(); } } to VB, so here is the VB version For Each process__1 As Process In...
21 Aug 2022 by Wesley Oliveira 2022
I'm developing an application - written in rust, that registers items in a database, but I'm having trouble showing the data in a way that is visually good, I tried to use the Browser widget but it's not visually appealing. I have a struct Items...
27 Jul 2023 by 1f604
An implementation of b3sum based on io_uring
20 Jan 2022 by Gerard Castelló Viader
Password cracker made in WASM Rust inspired by the popular John the Ripper
17 Jan 2017 by Liu Junfeng
A PEG parser combinator library implemented in Rust, using operator overloading without macros.