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
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |