DynFallibleTryDropStrategy

Trait DynFallibleTryDropStrategy 

Source
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§

Source

fn dyn_try_handle_error(&self, error: Error) -> Result<()>

Try to handle the drop error.

Implementors§