rust

Installation
SKILL.md

Rust: Idiomatic Efficiency Reference

Table of Contents

  1. Ownership & Borrowing
  2. Error Handling
  3. Iterators
  4. Pattern Matching
  5. Structs & Enums
  6. Concurrency
  7. Anti-patterns specific to Rust

1. Ownership & Borrowing {#ownership}

// ❌ Cloning to avoid thinking about lifetimes
fn get_name(user: &User) -> String {
    user.name.clone()
}
Installs
1
GitHub Stars
79
First Seen
Jul 9, 2026
rust — francostino/opencode-skills-collection