pub trait IsFatalError {
// Required method
fn is_fatal(&self) -> bool;
}Expand description
A trait for errors to tell whether they are fatal.
This is used for determining whether the server should continue runnin or stop.
pub trait IsFatalError {
// Required method
fn is_fatal(&self) -> bool;
}A trait for errors to tell whether they are fatal.
This is used for determining whether the server should continue runnin or stop.