if you have something like: ```rust trait Format { fn format(&self); } impl Format for u8 { fn format(&self) { format_u8(self); } } ```