type github.com/jackc/pgx/v5/pgproto3.Frontend

25 uses

	github.com/jackc/pgx/v5/pgproto3 (current package)
		frontend.go#L12: type Frontend struct {
		frontend.go#L65: func NewFrontend(r io.Reader, w io.Writer) *Frontend {
		frontend.go#L67: 	return &Frontend{cr: cr, w: w}
		frontend.go#L77: func (f *Frontend) Send(msg FrontendMessage) {
		frontend.go#L96: func (f *Frontend) Flush() error {
		frontend.go#L125: func (f *Frontend) Trace(w io.Writer, options TracerOptions) {
		frontend.go#L134: func (f *Frontend) Untrace() {
		frontend.go#L140: func (f *Frontend) SendBind(msg *Bind) {
		frontend.go#L160: func (f *Frontend) SendParse(msg *Parse) {
		frontend.go#L180: func (f *Frontend) SendClose(msg *Close) {
		frontend.go#L200: func (f *Frontend) SendDescribe(msg *Describe) {
		frontend.go#L220: func (f *Frontend) SendExecute(msg *Execute) {
		frontend.go#L240: func (f *Frontend) SendSync(msg *Sync) {
		frontend.go#L260: func (f *Frontend) SendQuery(msg *Query) {
		frontend.go#L281: func (f *Frontend) SendUnbufferedEncodedCopyData(msg []byte) error {
		frontend.go#L307: func (f *Frontend) Receive() (BackendMessage, error) {
		frontend.go#L421: func (f *Frontend) findAuthenticationMessageType(src []byte) (BackendMessage, error) {
		frontend.go#L455: func (f *Frontend) GetAuthType() uint32 {
		frontend.go#L459: func (f *Frontend) ReadBufferLen() int {
		frontend.go#L469: func (f *Frontend) SetMaxBodyLen(maxBodyLen int) {

	github.com/jackc/pgx/v5/pgconn
		config.go#L311: 		BuildFrontend: func(r io.Reader, w io.Writer) *pgproto3.Frontend {
		pgconn.go#L56: type BuildFrontendFunc func(r io.Reader, w io.Writer) *pgproto3.Frontend
		pgconn.go#L83: 	frontend          *pgproto3.Frontend
		pgconn.go#L681: func (pgConn *PgConn) Frontend() *pgproto3.Frontend {
		pgconn.go#L2112: 	Frontend          *pgproto3.Frontend