Go to file
simonsan de7519f5d9
Add introductions (#117)
Co-authored-by: Marco Ieni <11428655+MarcoIeni@users.noreply.github.com>
2021-01-02 12:15:33 +01:00
.github/workflows add ci (#115) 2021-01-01 12:49:45 +01:00
anti_patterns Add introductions (#117) 2021-01-02 12:15:33 +01:00
functional Add introductions (#117) 2021-01-02 12:15:33 +01:00
idioms Add introductions (#117) 2021-01-02 12:15:33 +01:00
patterns Add introductions (#117) 2021-01-02 12:15:33 +01:00
refactoring Add introductions (#117) 2021-01-02 12:15:33 +01:00
.env Adding mdbook configuration and deployment to gh-pages (#111) 2021-01-01 12:27:42 +01:00
.gitignore Adding mdbook configuration and deployment to gh-pages (#111) 2021-01-01 12:27:42 +01:00
book.toml Adding mdbook configuration and deployment to gh-pages (#111) 2021-01-01 12:27:42 +01:00
intro.md Add introductions (#117) 2021-01-02 12:15:33 +01:00
LICENSE Initial commit 2015-08-31 10:06:10 +12:00
README.md Add introductions (#117) 2021-01-02 12:15:33 +01:00
SUMMARY.md Add introductions (#117) 2021-01-02 12:15:33 +01:00
template.md Added a few idioms and patterns - some are still WIP 2015-10-23 09:53:16 +13:00

Rust Design Patterns

An open source book about design patterns and idioms in the Rust programming language that you can read here.

Contents

Introduction

Idioms

Design patterns

Anti-patterns

  • TODO thread + catch_panic for exceptions
  • TODO Clone to satisfy the borrow checker
  • Deref polymorphism
  • TODO Matching all fields of a struct (back compat)
  • TODO wildcard matches
  • TODO taking an enum rather than having multiple functions
  • TODO unwrap()ing every Result instead of forwarding it
  • #[deny(warnings)]

Contributing

Contributions are very welcome!

You should start with the template. Copy it into the appropriate directory, edit it, and submit a PR. You might not want every section, and you might want to add extra sections.

We suggest leaving a comment on the issue tracker so that other people don't start working on the same topic.

Correction and elaboration PRs are very welcome.

Building with mdbook

This book is built with mdbook. You can install it by running cargo install mdbook.

If you want to build it locally you can run one of these two commands in the root directory of the repository:

  • mdbook build

    Builds static html pages as output and place them in the /book directory by default.

  • mdbook serve

    Serves the book at http://localhost:3000 (port is changeable, take a look at the terminal output to be sure) and reloads the browser when a change occurs.