pub trait TextResultSetHandler {
// Required methods
fn no_result_set(&mut self, ok: OkPayloadBytes<'_>) -> Result<()>;
fn resultset_start(&mut self, cols: &[ColumnDefinition<'_>]) -> Result<()>;
fn row(
&mut self,
cols: &[ColumnDefinition<'_>],
row: TextRowPayload<'_>,
) -> Result<()>;
fn resultset_end(&mut self, eof: OkPayloadBytes<'_>) -> Result<()>;
}Expand description
Trait that defines event callbacks for text protocol result sets