pub trait Fatality: Error + Debug { // Required method fn is_fatal(&self) -> bool; }
Determine the fatality of an error.
Returns true if the error variant is fatal or false if it is more of a informational error.
true
false