type github.com/jackc/pgtype.Box
17 uses
github.com/jackc/pgtype (current package)
box.go#L14: type Box struct {
box.go#L19: func (dst *Box) Set(src interface{}) error {
box.go#L23: func (dst Box) Get() interface{} {
box.go#L34: func (src *Box) AssignTo(dst interface{}) error {
box.go#L38: func (dst *Box) DecodeText(ci *ConnInfo, src []byte) error {
box.go#L40: *dst = Box{Status: Null}
box.go#L81: *dst = Box{P: [2]Vec2{{x1, y1}, {x2, y2}}, Status: Present}
box.go#L85: func (dst *Box) DecodeBinary(ci *ConnInfo, src []byte) error {
box.go#L87: *dst = Box{Status: Null}
box.go#L100: *dst = Box{
box.go#L110: func (src Box) EncodeText(ci *ConnInfo, buf []byte) ([]byte, error) {
box.go#L127: func (src Box) EncodeBinary(ci *ConnInfo, buf []byte) ([]byte, error) {
box.go#L144: func (dst *Box) Scan(src interface{}) error {
box.go#L146: *dst = Box{Status: Null}
box.go#L163: func (src Box) Value() (driver.Value, error) {
pgtype.go#L276: ci.RegisterDataType(DataType{Value: &Box{}, Name: "box", OID: BoxOID})
pgtype.go#L893: "box": &Box{},
 |
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. |