Value implements the driver.Valuer interface.
()
| 39 | |
| 40 | // Value implements the driver.Valuer interface. |
| 41 | func (u UUID) Value() (driver.Value, error) { |
| 42 | return u.String(), nil |
| 43 | } |
| 44 | |
| 45 | // Scan implements the sql.Scanner interface. |
| 46 | // A 16-byte slice will be handled by UnmarshalBinary, while |
no test coverage detected