pub trait IsFatalError {
    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.

Required Methods

Returns true if all future operations will (very likely) fail.

Implementations on Foreign Types

Implementors