rust-design-patterns icon indicating copy to clipboard operation
rust-design-patterns copied to clipboard

Implementation of various design patterns in Rust.

Results 4 rust-design-patterns issues
Sort by recently updated
recently updated
newest added

Restructure project to use Cargo, the Rust package manager. Add an example for the strategy pattern (based on the python example). Working on Rust 1.5.0-nightly.

This change creates a `_includes` directory in the `_docs` directory and adds includes for the relevant source files instead of copying them directly into the markdown posts. The `_includes` directory...

This would cut down on duplicate code and would reduce chances of things getting out of sync. I had something similar implemented as I discussed in issue #2, I just...

`println` was changed in Rust a while back to the `println!()` macro, which is now reflected in the code. All Rust code, excluding your `chain_of_responsibility.rs` (unimplemented) now compiles on Rust...