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#L68: 	buf, err := TimeCodec{}.PlanEncode(nil, 0, TextFormatCode, t).Encode(t, nil)
		time.go#L75: type TimeCodec struct{}
		time.go#L77: func (TimeCodec) FormatSupported(format int16) bool {
		time.go#L81: func (TimeCodec) PreferredFormat() int16 {
		time.go#L85: func (TimeCodec) PlanEncode(m *Map, oid uint32, format int16, value any) EncodePlan {
		time.go#L140: func (TimeCodec) PlanScan(m *Map, oid uint32, format int16, target any) ScanPlan {
		time.go#L196: 	buf, err := TimeCodec{}.PlanEncode(nil, 0, TextFormatCode, tim).Encode(tim, nil)
		time.go#L258: func (c TimeCodec) DecodeDatabaseSQLValue(m *Map, oid uint32, format int16, src []byte) (driver.Value, error) {
		time.go#L262: func (c TimeCodec) DecodeValue(m *Map, oid uint32, format int16, src []byte) (any, error) {