You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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?
The text was updated successfully, but these errors were encountered:
I have an error type whose
Display
implementation 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 conflictingDisplay
implementations. Is it possible to disable snafu’s generatedDisplay
implementation so that I can use my own?The text was updated successfully, but these errors were encountered: