This crate contains mixin
macros that combines fields and implementations of different structs.
Example:
```rust
pub struct Named { name: String, }
impl Named { pub fn name(&self) -> &str { &self.name } }
pub struct MyStruct {}
fn testit() { let mystruct = MyStruct { name: "MixIn Works" }; asserteq!(mystruct.name(), "MixIn Works"); } ```