Crate enutil

Source

Traits§

EnumDeref
A trait for reducing boilerplate code related to common access patterns in new-type-like variant enums. Because of this, for derived usage, all the variants in the enumerator need to be new-types (e.g. Int(i32), Person(Person))
IntoFieldVecs
A trait for converting a Vec into multiple Vec’s for each field of T (Vec<T.a>, Vec<T.b>, …).