pub trait IntoErrorPanel {
// Required method
fn into_panel(self) -> ErrorPanel;
}Expand description
Trait for errors that can be converted to ErrorPanel.
Required Methods§
Sourcefn into_panel(self) -> ErrorPanel
fn into_panel(self) -> ErrorPanel
Convert this error into an ErrorPanel.