[][src]Trait c3p0_pool_pg::r2d2::postgres::HandleNotice

pub trait HandleNotice: Send {
    fn handle_notice(&mut self, notice: DbError);
}

A trait implemented by types that can handle Postgres notice messages.

It is implemented for all Send + FnMut(DbError) closures.

Required methods

fn handle_notice(&mut self, notice: DbError)

Handle a Postgres notice message

Loading content...

Implementors

impl HandleNotice for LoggingNoticeHandler[src]

impl<F> HandleNotice for F where
    F: Send + FnMut(DbError), 
[src]

Loading content...