type github.com/go-pg/pg/v10/orm.AfterScanHook

9 uses

	github.com/go-pg/pg/v10/orm (current package)
		hook.go#L11: 	_ AfterScanHook    = (*hookStubs)(nil)
		hook.go#L114: type AfterScanHook interface {
		hook.go#L118: var afterScanHookType = reflect.TypeOf((*AfterScanHook)(nil)).Elem()
		hook.go#L121: 	return v.Interface().(AfterScanHook).AfterScan(ctx)
		model.go#L34: 	AfterScanHook
		model_table_slice.go#L94: 	_ AfterScanHook  = (*sliceTableModel)(nil)
		model_table_struct.go#L175: var _ AfterScanHook = (*structTableModel)(nil)

	github.com/go-pg/pg/v10
		hook.go#L13: 	AfterScanHook    = orm.AfterScanHook
		messages.go#L885: 	if h, ok := scanner.(orm.AfterScanHook); ok {