pub trait FallibleTryDropStrategy {
type Error: Into<Error>;
// Required method
fn try_handle_error(&self, error: Error) -> Result<(), Self::Error>;
}
Expand description
A trait which signifies a try drop strategy which can fail.
pub trait FallibleTryDropStrategy {
type Error: Into<Error>;
// Required method
fn try_handle_error(&self, error: Error) -> Result<(), Self::Error>;
}
A trait which signifies a try drop strategy which can fail.