This crate offers an alternative for a missing feature of the Rust Programming Language. That is, the possibility for traits to hold states.
http://proksima.github.io/has-doc/has/index.html
```rust
extern crate has;
use has::*;
struct Apple;
trait ApplesContainer: HasMut
fn put_apple(&mut self, apple: Apple) {
self.get_mut().push(apple);
}
}
struct Basket {
pub apples: Vec
impl ApplesContainer for Basket {}
impl_has!(Basket, Vec
fn main() { let mut basket = Basket::default();
basket.put_apple(Apple);
basket.put_apple(Apple);
basket.put_apple(Apple);
basket.take_apple();
assert_eq!(basket.apples.len(), 2);
} ```