rust-patterns

Installation
SKILL.md

Rust Patterns

Modern Rust patterns and best practices.

Error Handling

Custom Error Types with thiserror

use thiserror::Error;

#[derive(Error, Debug)]
pub enum AppError {
    #[error("Not found: {0}")]
    NotFound(String),

    #[error("Unauthorized: {0}")]
    Unauthorized(String),
Installs
2
GitHub Stars
1
First Seen
Feb 28, 2026
rust-patterns — peopleforrester/claude-dotfiles