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

20 uses

	github.com/jackc/pgx/v5/pgtype (current package)
		builtin_wrappers.go#L466: func (w *timeWrapper) ScanTime(v Time) error {
		builtin_wrappers.go#L489: func (w timeWrapper) TimeValue() (Time, error) {
		builtin_wrappers.go#L495: 	return Time{Microseconds: usec, Valid: true}, nil
		pgtype_default.go#L240: 	registerDefaultPgTypeVariants[Time](defaultMap, "time")
		time.go#L13: 	ScanTime(v Time) error
		time.go#L17: 	TimeValue() (Time, error)
		time.go#L27: type Time struct {
		time.go#L33: func (t *Time) ScanTime(v Time) error {
		time.go#L39: func (t Time) TimeValue() (Time, error) {
		time.go#L44: func (t *Time) Scan(src any) error {
		time.go#L46: 		*t = Time{}
		time.go#L64: func (t Time) Value() (driver.Value, error) {
		time.go#L166: 		return scanner.ScanTime(Time{})
		time.go#L175: 	return scanner.ScanTime(Time{Microseconds: usec, Valid: true})
		time.go#L196: 	tim := Time{Microseconds: usec, Valid: true}
		time.go#L212: 		return scanner.ScanTime(Time{})
		time.go#L257: 	return scanner.ScanTime(Time{Microseconds: usec, Valid: true})
		time.go#L269: 	var t Time