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.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".