github.com/jackc/pgx/v5/pgtype.Timestamp.Time (field)
19 uses
github.com/jackc/pgx/v5/pgtype (current package)
builtin_wrappers.go#L407: *w = timeWrapper(v.Time)
builtin_wrappers.go#L419: return Date{Time: time.Time(w), Valid: true}, nil
date.go#L23: Time time.Time
date.go#L55: *dst = Date{Time: src, Valid: true}
date.go#L71: return src.Time, nil
date.go#L84: s = src.Time.Format("2006-01-02")
date.go#L118: *dst = Date{Time: t, Valid: true}
date.go#L164: tUnix := time.Date(date.Time.Year(), date.Time.Month(), date.Time.Day(), 0, 0, 0, 0, time.UTC).Unix()
date.go#L194: year := date.Time.Year()
date.go#L206: if date.Time.Month() < 10 {
date.go#L209: buf = strconv.AppendInt(buf, int64(date.Time.Month()), 10)
date.go#L211: if date.Time.Day() < 10 {
date.go#L214: buf = strconv.AppendInt(buf, int64(date.Time.Day()), 10)
date.go#L267: return scanner.ScanDate(Date{Time: t, Valid: true})
date.go#L350: return scanner.ScanDate(Date{Time: t, Valid: true})
date.go#L395: return date.Time, nil
date.go#L413: return date.Time, nil