Click here to Skip to main content
15,887,683 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 Updated

Rust 

30 Nov 2023 by ChristianNeumanns
Union types (aka sum types, variants, choice types) provide an elegant solution for frequent programming tasks.
28 Jul 2023 by AmrDeveloper
Introduce GQL (A Git Query Language) to perform SQL like queries on .git files
27 Jul 2023 by 1f604
An implementation of b3sum based on io_uring
26 Apr 2023 by raddevus
Get Rust installed, compile and run your first program extremely fast with rustup
29 Jan 2023 by Michael Yuan @WasmEdge
Overview of tools and techniques needed to build and deploy Rust microservices in a WASM runtime
5 Jan 2023 by Michael Yuan @WasmEdge
How to use high performance Wasm runtime WasmEdge as a sidecar application runtime for Dapr
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.
24 Sep 2022 by blueray453
I understand the concept behind major software architectures. Their pros and cons and when to use what, etc. I can implement these my (hacky) way. But not sure whether it is the optimal way (am i missing some design pattern?). My question is,...
24 Sep 2022 by Greg Utas
I know of no such thing, although a few might exist for specific domains. Architecture diagrams and books are intended for software architects: that is, people with a reasonable amount of experience developing software. That experience will give...
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...
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() { //.. }
20 Jan 2022 by Gerard Castelló Viader
Password cracker made in WASM Rust inspired by the popular John the Ripper