type github.com/jackc/pgtype.QChar

22 uses

	github.com/jackc/pgtype (current package)
		pgtype.go#L279: 	ci.RegisterDataType(DataType{Value: &QChar{}, Name: "char", OID: QCharOID})
		pgtype.go#L896: 		"char":         &QChar{},
		qchar.go#L20: type QChar struct {
		qchar.go#L25: func (dst *QChar) Set(src interface{}) error {
		qchar.go#L27: 		*dst = QChar{Status: Null}
		qchar.go#L40: 		*dst = QChar{Int: value, Status: Present}
		qchar.go#L45: 		*dst = QChar{Int: int8(value), Status: Present}
		qchar.go#L53: 		*dst = QChar{Int: int8(value), Status: Present}
		qchar.go#L58: 		*dst = QChar{Int: int8(value), Status: Present}
		qchar.go#L66: 		*dst = QChar{Int: int8(value), Status: Present}
		qchar.go#L71: 		*dst = QChar{Int: int8(value), Status: Present}
		qchar.go#L79: 		*dst = QChar{Int: int8(value), Status: Present}
		qchar.go#L84: 		*dst = QChar{Int: int8(value), Status: Present}
		qchar.go#L92: 		*dst = QChar{Int: int8(value), Status: Present}
		qchar.go#L97: 		*dst = QChar{Int: int8(value), Status: Present}
		qchar.go#L103: 		*dst = QChar{Int: int8(num), Status: Present}
		qchar.go#L114: func (dst QChar) Get() interface{} {
		qchar.go#L125: func (src *QChar) AssignTo(dst interface{}) error {
		qchar.go#L129: func (dst *QChar) DecodeBinary(ci *ConnInfo, src []byte) error {
		qchar.go#L131: 		*dst = QChar{Status: Null}
		qchar.go#L139: 	*dst = QChar{Int: int8(src[0]), Status: Present}
		qchar.go#L143: func (src QChar) EncodeBinary(ci *ConnInfo, buf []byte) ([]byte, error) {