Duration represents the elapsed time between two instants as an int64 microsecond count.
type Duration int64
LocalDate is a date without a time zone. https://www.edgedb.com/docs/datamodel/scalars/datetime/
type LocalDate struct {
// contains filtered or unexported fields
}
LocalDateTime is a date and time without timezone. https://www.edgedb.com/docs/datamodel/scalars/datetime/
type LocalDateTime struct {
// contains filtered or unexported fields
}
LocalTime is a time without a time zone. https://www.edgedb.com/docs/datamodel/scalars/datetime/
type LocalTime struct {
// contains filtered or unexported fields
}
UUID a universally unique identifier https://www.edgedb.com/docs/datamodel/scalars/uuid#type::std::uuid
type UUID [16]byte
func ParseUUID(s string) (UUID, error)
ParseUUID parses s into a UUID or returns an error.