Trait diesel::r2d2::HandleError

source ·
pub trait HandleError<E>: Debug + Send + Sync + 'static {
    // Required method
    fn handle_error(&self, error: E);
}
Available on crate feature r2d2 only.
Expand description

A trait which handles errors reported by the ManageConnection.

Required Methods§

source

fn handle_error(&self, error: E)

Handles an error.

Implementors§