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

10 uses

	github.com/jackc/pgtype (current package)
		time.go#L19: 	Microseconds int64 // Number of microseconds since midnight
		time.go#L43: 		*dst = Time{Microseconds: usec, Status: Present}
		time.go#L63: 		return dst.Microseconds
		time.go#L78: 			if src.Microseconds > maxRepresentableByTime {
		time.go#L79: 				return fmt.Errorf("%d microseconds cannot be represented as time.Time", src.Microseconds)
		time.go#L82: 			usec := src.Microseconds
		time.go#L150: 	*dst = Time{Microseconds: usec, Status: Present}
		time.go#L167: 	*dst = Time{Microseconds: usec, Status: Present}
		time.go#L181: 	usec := src.Microseconds
		time.go#L204: 	return pgio.AppendInt64(buf, src.Microseconds), nil