Trait diesel::r2d2::HandleError[][src]

pub trait HandleError<E>: 'static + Debug + Send + Sync {
    fn handle_error(&self, error: E);
}
Expand description

A trait which handles errors reported by the ManageConnection.

Required methods

Handles an error.

Implementors