Trait postgres::HandleNotice [] [src]

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

Trait for types that can handle Postgres notice messages

Required Methods

fn handle_notice(&mut self, notice: DbError)

Handle a Postgres notice message

Implementors