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

16 uses

	github.com/jackc/pgx/v5/pgtype (current package)
		bits.go#L12: 	ScanBits(v Bits) error
		bits.go#L16: 	BitsValue() (Bits, error)
		bits.go#L20: type Bits struct {
		bits.go#L27: func (b *Bits) ScanBits(v Bits) error {
		bits.go#L33: func (b Bits) BitsValue() (Bits, error) {
		bits.go#L38: func (dst *Bits) Scan(src any) error {
		bits.go#L40: 		*dst = Bits{}
		bits.go#L53: func (src Bits) Value() (driver.Value, error) {
		bits.go#L157: 	var box Bits
		bits.go#L171: 		return scanner.ScanBits(Bits{})
		bits.go#L183: 	return scanner.ScanBits(Bits{Bytes: buf, Len: bitLen, Valid: true})
		bits.go#L192: 		return scanner.ScanBits(Bits{})
		bits.go#L210: 	return scanner.ScanBits(Bits{Bytes: buf, Len: int32(bitLen), Valid: true})
		pgtype_default.go#L211: 	registerDefaultPgTypeVariants[Bits](defaultMap, "varbit")