pub trait FailHandle: Send + Sync {
// Required methods
fn fail(&self);
fn failed(&self) -> bool;
}Expand description
A fail handle will do the clean up when we cannot recover from some error.
pub trait FailHandle: Send + Sync {
// Required methods
fn fail(&self);
fn failed(&self) -> bool;
}A fail handle will do the clean up when we cannot recover from some error.