github.com/jackc/pgx/v5/pgtype.Time.Microseconds (field)

11 uses

	github.com/jackc/pgx/v5/pgtype (current package)
		builtin_wrappers.go#L473: 	if v.Microseconds > maxRepresentableByTime {
		builtin_wrappers.go#L474: 		return fmt.Errorf("%d microseconds cannot be represented as time.Time", v.Microseconds)
		builtin_wrappers.go#L477: 	usec := v.Microseconds
		builtin_wrappers.go#L495: 	return Time{Microseconds: usec, Valid: true}, nil
		time.go#L28: 	Microseconds int64 // Number of microseconds since midnight
		time.go#L54: 			t.Microseconds = 0
		time.go#L113: 	return pgio.AppendInt64(buf, t.Microseconds), nil
		time.go#L128: 	usec := t.Microseconds
		time.go#L175: 	return scanner.ScanTime(Time{Microseconds: usec, Valid: true})
		time.go#L196: 	tim := Time{Microseconds: usec, Valid: true}
		time.go#L257: 	return scanner.ScanTime(Time{Microseconds: usec, Valid: true})