Trait pleingres::HandleRow [] [src]

pub trait HandleRow {
    fn row(&mut self, row: Row) -> bool;

    fn complete<'a>(&mut self, modified: u32) { ... }
fn ready_for_query<'a>(&mut self) { ... }
fn err(&mut self, err: &str) { ... } }

Requests that can handle a resulting row.

Required Methods

Called on each row.

Provided Methods

Called at the end of the request, with the number of modified rows.

Called when the server is ready for the next request.

This function gets called when the server returns an error.

Implementors