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

9 uses

	github.com/jackc/pgx/v5/pgtype (current package)
		line.go#L63: 	buf, err := LineCodec{}.PlanEncode(nil, 0, TextFormatCode, line).Encode(line, nil)
		line.go#L70: type LineCodec struct{}
		line.go#L72: func (LineCodec) FormatSupported(format int16) bool {
		line.go#L76: func (LineCodec) PreferredFormat() int16 {
		line.go#L80: func (LineCodec) PlanEncode(m *Map, oid uint32, format int16, value any) EncodePlan {
		line.go#L133: func (LineCodec) PlanScan(m *Map, oid uint32, format int16, target any) ScanPlan {
		line.go#L211: func (c LineCodec) DecodeDatabaseSQLValue(m *Map, oid uint32, format int16, src []byte) (driver.Value, error) {
		line.go#L215: func (c LineCodec) DecodeValue(m *Map, oid uint32, format int16, src []byte) (any, error) {
		pgtype_default.go#L71: 	defaultMap.RegisterType(&Type{Name: "line", OID: LineOID, Codec: LineCodec{}})