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.

Provided Methods

Called on each row.

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.

Implementations on Foreign Types

impl HandleRow for String
[src]

Implementors