type github.com/jackc/pgx/v5/pgtype.EnumCodec

12 uses

	github.com/jackc/pgx/v5/pgtype (current package)
		enum_codec.go#L11: type EnumCodec struct {
		enum_codec.go#L15: func (EnumCodec) FormatSupported(format int16) bool {
		enum_codec.go#L19: func (EnumCodec) PreferredFormat() int16 {
		enum_codec.go#L23: func (EnumCodec) PlanEncode(m *Map, oid uint32, format int16, value any) EncodePlan {
		enum_codec.go#L39: func (c *EnumCodec) PlanScan(m *Map, oid uint32, format int16, target any) ScanPlan {
		enum_codec.go#L55: func (c *EnumCodec) DecodeDatabaseSQLValue(m *Map, oid uint32, format int16, src []byte) (driver.Value, error) {
		enum_codec.go#L59: func (c *EnumCodec) DecodeValue(m *Map, oid uint32, format int16, src []byte) (any, error) {
		enum_codec.go#L68: func (c *EnumCodec) lookupAndCacheString(src []byte) string {
		enum_codec.go#L83: 	codec *EnumCodec
		enum_codec.go#L98: 	codec *EnumCodec

	github.com/jackc/pgx/v5
		conn.go#L1333: 		return &pgtype.Type{Name: typeName, OID: oid, Codec: &pgtype.EnumCodec{}}, nil
		derived_types.go#L211: 			type_ = &pgtype.Type{Name: ti.TypeName, OID: ti.Oid, Codec: &pgtype.EnumCodec{}}