Login
Discover
Waves
Communities
Login
Signup
Topics
#RUST
Global
Trending
Hot
New
Top
#RUST
Hot
Top communities
Create your community
latest #rust hot topics | Ecency
#rust
Follow to get notified about new posts with this tag
Get #rust by email
Follow
scipio
StemSocial
21h
Learn Rust Series (#48) - Custom Error Types & the std::error::Error Trait
Learn Rust Series (#48) - Custom Error Types & the std::error::Error Trait What will I learn You will learn how to design a custom error type as an enum of failure cases; how to implement Display for
$ 0.839
23
1
scipio
StemSocial
2d
Learn Rust Series (#47) - Option Combinators & Null-Free Programming
Learn Rust Series (#47) - Option Combinators & Null-Free Programming What will I learn You will learn how to transform and chain Option values without writing a single match; how map, and_then, and
$ 0.725
27
1
scipio
StemSocial
3d
Learn Rust Series (#46) - Result Combinators: map, map_err, and_then, ok_or
Learn Rust Series (#46) - Result Combinators: map, map_err, and_then, ok_or What will I learn You will learn how to transform a Result without writing a match at every step; how map and map_err change
scipio
StemSocial
4d
Learn Rust Series (#45) - Mini Project: A Doubly-Linked List, Safe then Unsafe
Learn Rust Series (#45) - Mini Project: A Doubly-Linked List, Safe then Unsafe What will I learn You will learn why a doubly-linked list is famously awkward to build in safe Rust; how to build a working
ibarra95
Holozing Community
7d
Published via Ecency
Promoted
!DIY Kawaii animated version of the Holozing creature Cinella, made with foam clay. (Tutorial) [ENG] [ESP]
Hello!! Good evening, #Holozing community, video game lovers, and Web3 gaming enthusiasts! Today I'm going to show you how to make the creature Cinella using foam clay, but this time in an animated kawaii
scipio
StemSocial
5d
Learn Rust Series (#44) - Higher-Ranked Trait Bounds & Lifetime Elision
Learn Rust Series (#44) - Higher-Ranked Trait Bounds & Lifetime Elision What will I learn You will learn what a higher-ranked trait bound is and how for<'a> expresses "for every lifetime";
scipio
StemSocial
6d
Learn Rust Series (#43) - std::mem: swap, replace, take & forget
Learn Rust Series (#43) - std::mem: swap, replace, take & forget What will I learn You will learn why you cannot simply move a value out of a &mut, and what to do instead; how std::mem::swap exchanges
scipio
StemSocial
7d
Learn Rust Series (#42) - Drop Order, the Drop Check & Leak Safety
Learn Rust Series (#42) - Drop Order, the Drop Check & Leak Safety What will I learn You will learn the exact order values and struct fields are dropped in; what the drop check is, and why a type with