pub enum QueryResultSet<'postgres_client, 'query_result_set, F: ConnectionFactory> {
QueryProcessingComplete,
RowDescriptionReceived(RowResultReader<'postgres_client, 'query_result_set, F>),
}Variants§
QueryProcessingComplete
RowDescriptionReceived(RowResultReader<'postgres_client, 'query_result_set, F>)
Auto Trait Implementations§
impl<'postgres_client, 'query_result_set, F> !Send for QueryResultSet<'postgres_client, 'query_result_set, F>
impl<'postgres_client, 'query_result_set, F> !Sync for QueryResultSet<'postgres_client, 'query_result_set, F>
impl<'postgres_client, 'query_result_set, F> !UnwindSafe for QueryResultSet<'postgres_client, 'query_result_set, F>
impl<'postgres_client, 'query_result_set, F> Freeze for QueryResultSet<'postgres_client, 'query_result_set, F>where
RowResultReader<'postgres_client, 'query_result_set, F>: Freeze,
impl<'postgres_client, 'query_result_set, F> RefUnwindSafe for QueryResultSet<'postgres_client, 'query_result_set, F>where
RowResultReader<'postgres_client, 'query_result_set, F>: RefUnwindSafe,
impl<'postgres_client, 'query_result_set, F> Unpin for QueryResultSet<'postgres_client, 'query_result_set, F>where
RowResultReader<'postgres_client, 'query_result_set, F>: Unpin,
impl<'postgres_client, 'query_result_set, F> UnsafeUnpin for QueryResultSet<'postgres_client, 'query_result_set, F>where
RowResultReader<'postgres_client, 'query_result_set, F>: UnsafeUnpin,
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