Login
Discover
Waves
Communities
Login
Signup
Topics
#rust
Global
Trending
Hot
New
Top
#rust
New
Top communities
Create your community
latest #rust created topics | Ecency
scipio
StemSocial
2026-08-09 14:36
Learn Rust Series (#22) - Deriving Common Traits
Learn Rust Series (#22) - Deriving Common Traits What will I learn You will learn what the #[derive(...)] attribute does and how it auto-implements common traits; what each of Debug, Clone, Copy, PartialEq,
$ 0.660
18
1
scipio
StemSocial
2026-08-08 15:27
Learn Rust Series (#21) - From, Into, TryFrom & Idiomatic Conversions
Learn Rust Series (#21) - From, Into, TryFrom & Idiomatic Conversions What will I learn You will learn how From and Into express infallible conversions, and why implementing From hands you Into for
$ 0.672
17
1
scipio
StemSocial
2026-08-07 14:42
Learn Rust Series (#20) - Drop & Deterministic Destruction (RAII)
Learn Rust Series (#20) - Drop & Deterministic Destruction (RAII) What will I learn You will learn how the Drop trait runs cleanup code automatically when a value goes out of scope; what RAII means
scipio
StemSocial
2026-08-06 15:20
Learn Rust Series (#19) - Deref, DerefMut & Deref Coercion
Learn Rust Series (#19) - Deref, DerefMut & Deref Coercion What will I learn You will learn how the Deref trait makes a type behave like a reference to another type; how deref coercion silently converts
ecency
Town Square
2026-07-27 06:40
Published via Ecency
Promoted
Ecency Pro Is Here: Support Ecency, Unlock the Perks
Today we are launching Ecency Pro: one annual membership that helps keep Ecency running and hands you a set of perks in return. Here is the short version. Ecency Pro is $19.99 for a year. You buy it once
scipio
StemSocial
2026-08-05 14:47
Learn Rust Series (#18) - Operator Overloading with std::ops
Learn Rust Series (#18) - Operator Overloading with std::ops What will I learn You will learn how operators like +, *, and [] are really just traits living in std::ops; how to implement Add for your own
scipio
StemSocial
2026-08-04 15:10
Learn Rust Series (#17) - Associated Types vs Generic Parameters
Learn Rust Series (#17) - Associated Types vs Generic Parameters What will I learn You will learn the difference between an associated type and a generic type parameter on a trait; why Iterator carries
scipio
StemSocial
2026-08-03 16:14
Learn Rust Series (#16) - Static vs Dynamic Dispatch
Learn Rust Series (#16) - Static vs Dynamic Dispatch What will I learn You will learn what monomorphization is, and how generics turn into per-type machine code at compile time; how static dispatch trades
scipio
StemSocial
2026-08-02 15:50
Learn Rust Series (#15) - Trait Objects & Dynamic Dispatch
Learn Rust Series (#15) - Trait Objects & Dynamic Dispatch What will I learn You will learn what a trait object is and how dyn Trait gives you polymorphism resolved at runtime; why a plain generic
cliffblank
Actifit
2026-08-07 07:00
Promoted
My Actifit Report Card: August 6 2026
My Typical Gym Day 💪 | Actifit Report Hey Hive fam! Sharing a snapshot of what a regular gym day looks like for me these days. My routine has settled into a rhythm I actually enjoy showing up for, which
scipio
StemSocial
2026-08-01 14:40
Learn Rust Series (#14) - Mini Project: A Command-Line To-Do App
Learn Rust Series (#14) - Mini Project: A Command-Line To-Do App What will I learn You will learn how to read command-line arguments with std::env::args; how to read and write a text file with std::fs,
scipio
StemSocial
2026-07-31 15:28
Learn Rust Series (#13) - Concurrency: Threads, Channels, Arc & Mutex
Learn Rust Series (#13) - Concurrency: Threads, Channels, Arc & Mutex What will I learn You will learn how to spawn OS threads and wait for them with join handles; why you use move closures to hand
scipio
StemSocial
2026-07-30 16:13
Learn Rust Series (#12) - Smart Pointers: Box, Rc & RefCell
Learn Rust Series (#12) - Smart Pointers: Box, Rc & RefCell What will I learn You will learn what a smart pointer actually is, and how it differs from the plain references we have used since episode
scipio
StemSocial
2026-07-29 15:49
Learn Rust Series (#11) - Closures & the Iterator Trait
Learn Rust Series (#11) - Closures & the Iterator Trait What will I learn You will learn what closures are and how they capture the surrounding environment; the three closure traits Fn, FnMut, and
lacosi
Hive Cuba
2026-08-08 04:03
Published via Ecency
Promoted
Escuela Biblica de Verano./Summer Bible School.
Una victoria más para nuestra Iglesia Evangélica Bautista en Siboney( IEBS). Hoy después de 4 días culminamos la EBV en IEBS bajo el lema "Estación Iluminación". Contamos con la participación
scipio
StemSocial
2026-07-28 14:06
Learn Rust Series (#10) - Lifetimes
Learn Rust Series (#10) - Lifetimes What will I learn You will learn why lifetimes exist, and how they stop dangling references at compile time before they can ever crash your program; how to read and
scipio
StemSocial
2026-07-27 12:56
Learn Rust Series (#9) - Modules & Crates
Learn Rust Series (#9) - Modules & Crates What will I learn You will learn the difference between a crate and a module, and when to reach for each; how to carve code into modules, split them across
scipio
StemSocial
2026-07-26 13:20
Learn Rust Series (#8) - Traits & Generics
Learn Rust Series (#8) - Traits & Generics What will I learn You will learn how traits define shared behavior across unrelated types, without a single line of inheritance; how to write generic functions
scipio
StemSocial
2026-07-25 14:07
Learn Rust Series (#7) - Collections
Learn Rust Series (#7) - Collections What will I learn You will learn how Vec gives you a growable array, and why capacity and length are two different numbers that matter for performance; how Rust's ownership
kryptik.tigrrr3d
GEMS
2026-08-06 12:38
Published via Ecency
Promoted
The Chalky Percher
This post is about a type of dragonfly that's common here in my country, as well as in other parts of the world.
scipio
StemSocial
2026-07-24 12:05
Learn Rust Series (#6) - Error Handling
Learn Rust Series (#6) - Error Handling What will I learn You will learn why Rust models failure with Result values instead of throwing exceptions, and what that design actually buys you; how the ? operator
scipio
StemSocial
2026-07-23 13:41
Learn Rust Series (#5) - Structs & Enums
Learn Rust Series (#5) - Structs & Enums What will I learn You will learn how structs group related data into a single named type, and how impl blocks give that data behaviour; the three forms of self
scipio
StemSocial
2026-07-22 13:32
Learn Rust Series (#4) - Control Flow & Pattern Matching
Learn Rust Series (#4) - Control Flow & Pattern Matching What will I learn You will learn why Rust treats if, loop, and blocks as expressions that produce values, not just statements that do things;
scipio
StemSocial
2026-07-21 12:54
Learn Rust Series (#3) - Ownership & Borrowing
Learn Rust Series (#3) - Ownership & Borrowing What will I learn You will learn the three ownership rules in depth, and what a value actually looks like on the stack and the heap; why assigning a String
Older →