From wshobson-rust-async-patterns
Master Rust async with Tokio: async traits, error handling, concurrent patterns. Use when building async Rust apps, implementing concurrent systems, or debugging async code.
How this skill is triggered — by the user, by Claude, or both
Slash command
/wshobson-rust-async-patterns:rust-async-patternsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Production patterns for async Rust programming with Tokio runtime, including tasks, channels, streams, and error handling.
Production patterns for async Rust programming with Tokio runtime, including tasks, channels, streams, and error handling.
Future (lazy) → poll() → Ready(value) | Pending
↑ ↓
Waker ← Runtime schedules
| Concept | Purpose |
|---|---|
Future | Lazy computation that may complete later |
async fn | Function returning impl Future |
await | Suspend until future completes |
Task | Spawned future running concurrently |
Runtime | Executor that polls futures |
# Cargo.toml
[dependencies]
tokio = { version = "1", features = ["full"] }
futures = "0.3"
async-trait = "0.1"
anyhow = "1.0"
tracing = "0.1"
tracing-subscriber = "0.3"
use tokio::time::{sleep, Duration};
use anyhow::Result;
#[tokio::main]
async fn main() -> Result<()> {
// Initialize tracing
tracing_subscriber::fmt::init();
// Async operations
let result = fetch_data("https://api.example.com").await?;
println!("Got: {}", result);
Ok(())
}
async fn fetch_data(url: &str) -> Result<String> {
// Simulated async operation
sleep(Duration::from_millis(100)).await;
Ok(format!("Data from {}", url))
}
Detailed pattern documentation lives in references/details.md. Read that file when the navigation tier above is insufficient.
tokio::select! - For racing futuresJoinSet - For managing multiple tasksCancellationTokenstd::thread::sleep in async? or log4plugins reuse this skill
First indexed Jun 3, 2026
npx claudepluginhub p/wshobson-wshobson-rust-async-patterns-plugins-systems-programming-skills-rust-async-patternsMaster Rust async with Tokio: async traits, error handling, concurrent patterns. Use when building async Rust apps, implementing concurrent systems, or debugging async code.
Provides patterns and guidance for Rust async programming with Tokio, including async traits, error handling, and concurrent tasks. Use when building async Rust applications or debugging async code.
Provides production patterns for async Rust with Tokio: tasks, channels, streams, error handling, and performance optimization.