type Numeric struct { Decimal decimal.Decimal Status pgtype.Status }
func (src *Numeric) AssignTo(dst interface{}) error
func (dst *Numeric) DecodeBinary(ci *pgtype.ConnInfo, src []byte) error
func (dst *Numeric) DecodeText(ci *pgtype.ConnInfo, src []byte) error
func (src Numeric) EncodeBinary(ci *pgtype.ConnInfo, buf []byte) ([]byte, error)
func (src Numeric) EncodeText(ci *pgtype.ConnInfo, buf []byte) ([]byte, error)
func (dst Numeric) Get() interface{}
func (src Numeric) MarshalJSON() ([]byte, error)
func (dst *Numeric) Scan(src interface{}) error
Scan implements the database/sql Scanner interface.
func (dst *Numeric) Set(src interface{}) error
func (dst *Numeric) UnmarshalJSON(b []byte) error
func (src Numeric) Value() (driver.Value, error)
Value implements the database/sql/driver Valuer interface.