Source File
interfaces.go
Belonging Package
gorm.io/gorm/schema
package schemaimport ()// ConstraintInterface database constraint interfacetype ConstraintInterface interface {GetName() stringBuild() (sql string, vars []interface{})}// GormDataTypeInterface gorm data type interfacetype GormDataTypeInterface interface {GormDataType() string}// FieldNewValuePool field new scan value pooltype FieldNewValuePool interface {Get() interface{}Put(interface{})}// CreateClausesInterface create clauses interfacetype CreateClausesInterface interface {CreateClauses(*Field) []clause.Interface}// QueryClausesInterface query clauses interfacetype QueryClausesInterface interface {QueryClauses(*Field) []clause.Interface}// UpdateClausesInterface update clauses interfacetype UpdateClausesInterface interface {UpdateClauses(*Field) []clause.Interface}// DeleteClausesInterface delete clauses interfacetype DeleteClausesInterface interface {DeleteClauses(*Field) []clause.Interface}
![]() |
The pages are generated with Golds v0.8.2. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |