type github.com/jackc/pgx/v5/pgtype.Uint32

19 uses

	github.com/jackc/pgx/v5/pgtype (current package)
		uint32.go#L15: 	ScanUint32(v Uint32) error
		uint32.go#L19: 	Uint32Value() (Uint32, error)
		uint32.go#L23: type Uint32 struct {
		uint32.go#L29: func (n *Uint32) ScanUint32(v Uint32) error {
		uint32.go#L35: func (n Uint32) Uint32Value() (Uint32, error) {
		uint32.go#L40: func (dst *Uint32) Scan(src any) error {
		uint32.go#L42: 		*dst = Uint32{}
		uint32.go#L68: 	*dst = Uint32{Uint32: uint32(n), Valid: true}
		uint32.go#L74: func (src Uint32) Value() (driver.Value, error) {
		uint32.go#L82: func (src Uint32) MarshalJSON() ([]byte, error) {
		uint32.go#L90: func (dst *Uint32) UnmarshalJSON(b []byte) error {
		uint32.go#L98: 		*dst = Uint32{}
		uint32.go#L100: 		*dst = Uint32{Uint32: *n, Valid: true}
		uint32.go#L302: 		return s.ScanUint32(Uint32{})
		uint32.go#L311: 	return s.ScanUint32(Uint32{Uint32: n, Valid: true})
		uint32.go#L343: 		return s.ScanUint32(Uint32{})
		uint32.go#L351: 	return s.ScanUint32(Uint32{Uint32: uint32(n), Valid: true})