package pgtype

import (
	
)
GenericBinary is a placeholder for binary format values that no other type exists to handle.
type GenericBinary Bytea

func ( *GenericBinary) ( interface{}) error {
	return (*Bytea)().Set()
}

func ( GenericBinary) () interface{} {
	return (Bytea)().Get()
}

func ( *GenericBinary) ( interface{}) error {
	return (*Bytea)().AssignTo()
}

func ( *GenericBinary) ( *ConnInfo,  []byte) error {
	return (*Bytea)().DecodeBinary(, )
}

func ( GenericBinary) ( *ConnInfo,  []byte) ([]byte, error) {
	return (Bytea)().EncodeBinary(, )
}
Scan implements the database/sql Scanner interface.
func ( *GenericBinary) ( interface{}) error {
	return (*Bytea)().Scan()
}
Value implements the database/sql/driver Valuer interface.
func ( GenericBinary) () (driver.Value, error) {
	return (Bytea)().Value()