Module pg_message

Source

Macrosยง

from_usize ๐Ÿ”’

Structsยง

BeCommandCompleteMessage
FeBindMessage
FeCancelMessage
FeCloseMessage
FeDescribeMessage
FeExecuteMessage
FeMessageHeader
FeParseMessage
FePasswordMessage
FeQueryMessage
Query message contains the string sql.
FeStartupMessage

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
BeParameterStatusMessage
FeMessage
Messages that can be sent from pg client to server. Implement read.
ServerThrottleReason
TransactionStatus

Traitsยง

FromUsize ๐Ÿ”’

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.