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

10 uses

	github.com/jackc/pgx/v5/pgtype (current package)
		pgtype_default.go#L85: 	defaultMap.RegisterType(&Type{Name: "time", OID: TimeOID, Codec: TimeCodec{}})
		time.go#L69: 	buf, err := TimeCodec{}.PlanEncode(nil, 0, TextFormatCode, t).Encode(t, nil)
		time.go#L76: type TimeCodec struct{}
		time.go#L78: func (TimeCodec) FormatSupported(format int16) bool {
		time.go#L82: func (TimeCodec) PreferredFormat() int16 {
		time.go#L86: func (TimeCodec) PlanEncode(m *Map, oid uint32, format int16, value any) EncodePlan {
		time.go#L141: func (TimeCodec) PlanScan(m *Map, oid uint32, format int16, target any) ScanPlan {
		time.go#L198: 	buf, err := TimeCodec{}.PlanEncode(nil, 0, TextFormatCode, tim).Encode(tim, nil)
		time.go#L260: func (c TimeCodec) DecodeDatabaseSQLValue(m *Map, oid uint32, format int16, src []byte) (driver.Value, error) {
		time.go#L264: func (c TimeCodec) DecodeValue(m *Map, oid uint32, format int16, src []byte) (any, error) {