Enum pleingres::RowResult[][src]

pub enum RowResult<'a> {
    Row(Row<'a>),
    Complete(u32),
    NoMoreRows,
    Err(&'a str),
}

Result from a request.

Variants

An actual row.

A completion signal, with the number of rows modified.

A termination signal, sent when there are no more rows.

An error.

Trait Implementations

impl<'a> Debug for RowResult<'a>
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl<'a> Send for RowResult<'a>

impl<'a> Sync for RowResult<'a>