Plugin

Type-Safe, Lazily Evaluated, Plugins for Extensible Types

Plugins provide a consistent interface for mixin methods. You can use a plugin anywhere you would use a "mixin" trait and an implementation.

Example Usage

```rust // Define a struct. struct IntPlugin;

// Map it onto an i32 value. impl typemap::Key for IntPlugin { type Value = i32; }

// Define the plugin evaluation function. // Extended is a type that implements Extensible. impl Plugin for IntPlugin { type Error = ();

fn eval(_: &mut Extended) -> Result<i32, ()> {
    Ok(0i32)
}

} assert_eq!(extended.get::().unwrap(), 0i32); ```

To do the same thing with a trait, one could do:

```rust trait IntProducer { fn getintvalue(&self) -> Option; }

impl IntProducer for Extended { fn getintvalue(&self) -> Option { Some(0i32) } } ```

Although using a raw trait is less code, plugins provide the following advantages:

e.get::<mod1::PluginX>(); e.get::<mod2::PluginX>();