pub enum PostgresResponseType {
AuthenticationOk = 82,
ParameterStatus = 83,
ReadyForQuery = 90,
RowDescription = 84,
DataRow = 68,
CommandComplete = 67,
ErrorResponse = 69,
}Expand description
PostgreSQL response message types
Variants§
AuthenticationOk = 82
ParameterStatus = 83
ReadyForQuery = 90
RowDescription = 84
DataRow = 68
CommandComplete = 67
ErrorResponse = 69
Trait Implementations§
Source§impl Clone for PostgresResponseType
impl Clone for PostgresResponseType
Source§fn clone(&self) -> PostgresResponseType
fn clone(&self) -> PostgresResponseType
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PostgresResponseType
impl Debug for PostgresResponseType
Source§impl PartialEq for PostgresResponseType
impl PartialEq for PostgresResponseType
impl StructuralPartialEq for PostgresResponseType
Auto Trait Implementations§
impl Freeze for PostgresResponseType
impl RefUnwindSafe for PostgresResponseType
impl Send for PostgresResponseType
impl Sync for PostgresResponseType
impl Unpin for PostgresResponseType
impl UnwindSafe for PostgresResponseType
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