Blog

Insights and articles on Rust 🦀, AI and live tool development.

Showing 6 of 53 articles • Page 8 of 9

rustJuly 7, 2025

What are the differences between Fn, FnMut, and FnOnce?

Functions and closures in Rust, covering ownership, traits, lifetimes

rustJuly 7, 2025

How do you specify a closure as a function parameter or return type?

Functions and closures in Rust, covering ownership, traits, lifetimes

rustJuly 4, 2025

Rust Traits vs. Java/C# Interfaces: Shared Behavior Done Right

Discussion on Rust traits vs Java/C# interfaces, covering dispatch mechanisms, compile-time behavior, and performance optimizations.

rustJuly 3, 2025

String vs. &str – Which to Use and When?

String vs str in Rust, covering memory management, ownership, and when to use each type.

rustJune 30, 2025

Functions or Closures in Rust? Know the Difference!

Functions vs closures in Rust, covering ownership, traits, lifetimes, and performance implications.

rustJune 26, 2025

Rust's repr: Optimize Struct Memory for Cache Efficiency

Low-level memory optimization in Rust, covering repr attributes, cache efficiency, and performance trade-offs