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

9 uses

	github.com/jackc/pgx/v5/pgtype (current package)
		lseg.go#L58: 	buf, err := LsegCodec{}.PlanEncode(nil, 0, TextFormatCode, lseg).Encode(lseg, nil)
		lseg.go#L65: type LsegCodec struct{}
		lseg.go#L67: func (LsegCodec) FormatSupported(format int16) bool {
		lseg.go#L71: func (LsegCodec) PreferredFormat() int16 {
		lseg.go#L75: func (LsegCodec) PlanEncode(m *Map, oid uint32, format int16, value any) EncodePlan {
		lseg.go#L130: func (LsegCodec) PlanScan(m *Map, oid uint32, format int16, target any) ScanPlan {
		lseg.go#L220: func (c LsegCodec) DecodeDatabaseSQLValue(m *Map, oid uint32, format int16, src []byte) (driver.Value, error) {
		lseg.go#L224: func (c LsegCodec) DecodeValue(m *Map, oid uint32, format int16, src []byte) (any, error) {
		pgtype_default.go#L72: 	defaultMap.RegisterType(&Type{Name: "lseg", OID: LsegOID, Codec: LsegCodec{}})