pub enum Status {
Show 13 variants
BadResponse,
CommandOk,
CopyBoth,
CopyIn,
CopyOut,
EmptyQuery,
FatalError,
NonFatalError,
SingleTuple,
TuplesOk,
TupplesOk,
PipelineSync,
PipelineAborted,
}
Variants§
BadResponse
The server’s response was not understood.
CommandOk
Successful completion of a command returning no data.
CopyBoth
Copy In/Out (to and from server) data transfer started. This feature is currently used only for streaming replication, so this status should not occur in ordinary applications.
CopyIn
Copy In (to server) data transfer started.
CopyOut
Copy Out (from server) data transfer started.
EmptyQuery
The string sent to the server was empty.
FatalError
A fatal error occurred.
NonFatalError
A nonfatal error (a notice or warning) occurred.
SingleTuple
The libpq::PQResult
contains a single result tuple from the current command. This status
occurs only when single-row mode has been selected for the query
TuplesOk
Successful completion of a command returning data (such as a SELECT
or SHOW
).
TupplesOk
PipelineSync
v14
only.Pipeline synchronization point.
PipelineAborted
v14
only.Command didn’t run because of an abort earlier in a pipeline.