pub trait DynFallibleTryDropStrategy {
// Required method
fn dyn_try_handle_error(&self, error: Error) -> Result<()>;
}Expand description
A trait which signifies a try drop strategy which can fail. Can be dynamically dispatched.
Required Methods§
Sourcefn dyn_try_handle_error(&self, error: Error) -> Result<()>
fn dyn_try_handle_error(&self, error: Error) -> Result<()>
Try to handle the drop error.