rust-pro
Installation
SKILL.md
Rust Pro
Expert-level orchestration of high-performance, memory-safe Rust applications. Focuses on systems programming, safety, and performance.
Boundary
rust-pro covers core language features (Ownership, Borrowing, Lifetimes), Error handling (Result/Option), Async programming (Tokio, Future), Generics, and Macros. It does NOT cover specific web frameworks unless they are foundational to the system (e.g., Axum).
When to use
- Building performance-critical systems (Browsers, OS, Runtimes).
- Implementing memory-safe alternatives to C/C++.
- Developing high-throughput async servers with
Tokio. - Writing WASM (WebAssembly) modules for frontend performance.