pub type MetaError<E, M> = Meta<Box<Error<E>>, M>;
pub struct MetaError<E, M>(pub Box<Error<E>>, pub M);
0: Box<Error<E>>
1: M