pub enum RowResult<'a> {
Row(Row<'a>),
Complete(u32),
NoMoreRows,
Err(&'a str),
}Expand description
Result from a request.
Variants§
Row(Row<'a>)
An actual row.
Complete(u32)
A completion signal, with the number of rows modified.
NoMoreRows
A termination signal, sent when there are no more rows.
Err(&'a str)
An error.
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for RowResult<'a>
impl<'a> RefUnwindSafe for RowResult<'a>
impl<'a> Send for RowResult<'a>
impl<'a> Sync for RowResult<'a>
impl<'a> Unpin for RowResult<'a>
impl<'a> UnwindSafe for RowResult<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more