I have an error type whose Display implementation actually has a bunch of logic and can't be expressed as a format!-style string literal. I would like to have this type #[derive(Snafu)], but that results in conflicting Display implementations. Is it possible to disable snafu’s generated Display implementation so that I can use my own?
I have an error type whose
Displayimplementation actually has a bunch of logic and can't be expressed as aformat!-style string literal. I would like to have this type#[derive(Snafu)], but that results in conflictingDisplayimplementations. Is it possible to disable snafu’s generatedDisplayimplementation so that I can use my own?