rust-ops

Installation
SKILL.md

Rust Operations

Comprehensive Rust skill covering ownership, async, error handling, and the production ecosystem.

Ownership Quick Reference

Who owns the value?
├─ Need to transfer ownership
│  └─ Move: let s2 = s1;  (s1 is invalid after this)
├─ Need to read without owning
│  └─ Shared borrow: &T (multiple allowed, no mutation)
├─ Need to mutate without owning
│  └─ Exclusive borrow: &mut T (only one, no other borrows)
├─ Need to share ownership across threads
Related skills
Installs
9
GitHub Stars
17
First Seen
Mar 9, 2026