type github.com/jackc/pgx/v5/pgtype.LsegCodec
9 uses
github.com/jackc/pgx/v5/pgtype (current package)
lseg.go#L59: buf, err := LsegCodec{}.PlanEncode(nil, 0, TextFormatCode, lseg).Encode(lseg, nil)
lseg.go#L66: type LsegCodec struct{}
lseg.go#L68: func (LsegCodec) FormatSupported(format int16) bool {
lseg.go#L72: func (LsegCodec) PreferredFormat() int16 {
lseg.go#L76: func (LsegCodec) PlanEncode(m *Map, oid uint32, format int16, value any) EncodePlan {
lseg.go#L131: func (LsegCodec) PlanScan(m *Map, oid uint32, format int16, target any) ScanPlan {
lseg.go#L224: func (c LsegCodec) DecodeDatabaseSQLValue(m *Map, oid uint32, format int16, src []byte) (driver.Value, error) {
lseg.go#L228: 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{}})