type github.com/jackc/pgtype.UUID
37 uses
github.com/jackc/pgtype (current package)
pgtype.go#L317: ci.RegisterDataType(DataType{Value: &UUID{}, Name: "uuid", OID: UUIDOID})
pgtype.go#L934: "uuid": &UUID{},
uuid.go#L10: type UUID struct {
uuid.go#L15: func (dst *UUID) Set(src interface{}) error {
uuid.go#L17: *dst = UUID{Status: Null}
uuid.go#L30: *dst = UUID{Bytes: value, Status: Present}
uuid.go#L36: *dst = UUID{Status: Present}
uuid.go#L39: *dst = UUID{Status: Null}
uuid.go#L46: *dst = UUID{Bytes: uuid, Status: Present}
uuid.go#L49: *dst = UUID{Status: Null}
uuid.go#L63: func (dst UUID) Get() interface{} {
uuid.go#L74: func (src *UUID) AssignTo(dst interface{}) error {
uuid.go#L126: func (dst *UUID) DecodeText(ci *ConnInfo, src []byte) error {
uuid.go#L128: *dst = UUID{Status: Null}
uuid.go#L141: *dst = UUID{Bytes: buf, Status: Present}
uuid.go#L145: func (dst *UUID) DecodeBinary(ci *ConnInfo, src []byte) error {
uuid.go#L147: *dst = UUID{Status: Null}
uuid.go#L155: *dst = UUID{Status: Present}
uuid.go#L160: func (src UUID) EncodeText(ci *ConnInfo, buf []byte) ([]byte, error) {
uuid.go#L171: func (src UUID) EncodeBinary(ci *ConnInfo, buf []byte) ([]byte, error) {
uuid.go#L183: func (dst *UUID) Scan(src interface{}) error {
uuid.go#L185: *dst = UUID{Status: Null}
uuid.go#L202: func (src UUID) Value() (driver.Value, error) {
uuid.go#L206: func (src UUID) MarshalJSON() ([]byte, error) {
uuid.go#L222: func (dst *UUID) UnmarshalJSON(src []byte) error {
uuid_array.go#L15: Elements []UUID
uuid_array.go#L43: elements := make([]UUID, len(value))
uuid_array.go#L62: elements := make([]UUID, len(value))
uuid_array.go#L81: elements := make([]UUID, len(value))
uuid_array.go#L100: elements := make([]UUID, len(value))
uuid_array.go#L113: case []UUID:
uuid_array.go#L151: Elements: make([]UUID, elementsLength),
uuid_array.go#L168: dst.Elements = make([]UUID, elementsLength)
uuid_array.go#L376: var elements []UUID
uuid_array.go#L379: elements = make([]UUID, len(uta.Elements))
uuid_array.go#L382: var elem UUID
uuid_array.go#L423: elements := make([]UUID, elementCount)
 |
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. |