pub trait Token<Re, Err, Ctx = ()> { // Required method fn convert(self, ctx: &Ctx) -> Result<Re, Err>; }