rust
Installation
SKILL.md
Rust
Overview
Rust programming patterns including ownership, lifetimes, traits, and async programming.
Ownership and Borrowing
Basic Ownership
fn main() {
// Ownership transfer (move)
let s1 = String::from("hello");
let s2 = s1; // s1 is moved to s2
// println!("{}", s1); // Error: s1 is no longer valid
Related skills
More from miles990/claude-software-skills
devops-cicd
CI/CD pipelines, infrastructure as code, and deployment strategies
410code-quality
Clean code principles, SOLID, and code review practices
408game-development
Game development patterns, architectures, and best practices
280e-commerce
E-commerce platforms, payment processing, and shopping cart patterns
241saas-platforms
SaaS architecture, multi-tenancy, and subscription management
234project-management
Agile methodologies, issue tracking, and team collaboration tools
227