Serializer field value serializer
| 39 | |
| 40 | // Serializer field value serializer |
| 41 | type serializer struct { |
| 42 | Field *Field |
| 43 | Serializer SerializerInterface |
| 44 | SerializeValuer SerializerValuerInterface |
| 45 | Destination reflect.Value |
| 46 | Context context.Context |
| 47 | value interface{} |
| 48 | fieldValue interface{} |
| 49 | } |
| 50 | |
| 51 | // Scan implements sql.Scanner interface |
| 52 | func (s *serializer) Scan(value interface{}) error { |
nothing calls this directly
no outgoing calls
no test coverage detected