Trait postgres::HandleNotice [] [src]

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

Trait for types that can handle Postgres notice messages

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

Required Methods

Handle a Postgres notice message

Implementors