pub trait Unrecoverable {
// Required method
fn is_unrecoverable(&self) -> bool;
}Expand description
Determines if something is considered “unrecoverable”, such as an unrecoverable error.
Note that the meaning of Unrecoverable may vary depending on the context.