factory

factory Documentation Build Status Code Coverage License: MIT

This crate provides Factory trait and its implementations.

The trait makes it possible to create any number of instances of a specific type.

Documentation

Examples

Creates default instances of u8 type:

```rust use factory::{DefaultFactory, Factory};

let f = DefaultFactory::::new(); assert_eq!(f.create(), 0); ```