Macrosยง
- from_
usize ๐
Structsยง
- BeCommand
Complete Message - FeBind
Message - FeCancel
Message - FeClose
Message - FeDescribe
Message - FeExecute
Message - FeMessage
Header - FeParse
Message - FePassword
Message - FeQuery
Message - Query message contains the string sql.
- FeStartup
Message
Enumsยง
- BeMessage
- Message sent from server to psql client. Implement
write
(how to serialize it into psql buffer). Ref: https://www.postgresql.org/docs/current/protocol-message-formats.html - BeParameter
Status Message - FeMessage
- Messages that can be sent from pg client to server. Implement
read
. - Server
Throttle Reason - Transaction
Status
Traitsยง
- From
Usize ๐
Functionsยง
- read_
null_ ๐terminated - Continue read until reached a \0. Used in reading string from Bytes.
- write_
body ๐ - Call f() to write body of the message and prepend it with 4-byte len as prescribed by the protocol. First write out body value and fill length value as i32 in front of it.
- write_
cstr ๐ - Safe write of s into buf as cstring (String in the protocol).
- write_
err_ ๐or_ notice - Safe write error or notice message.