init_trait 0.2.0

A small helper trait to simplify the initialisation of 'indexable' data structures
1
2
3
pub trait TypeEquals<T>: From<T> { }

impl<T> TypeEquals<T> for T { }