Value implements the driver.Valuer interface.
()
| 20 | |
| 21 | // Value implements the driver.Valuer interface. |
| 22 | func (u UUID) Value() (driver.Value, error) { |
| 23 | return u.String(), nil |
| 24 | } |
| 25 | |
| 26 | // Scan implements the sql.Scanner interface. |
| 27 | // A 16-byte slice will be handled by UnmarshalBinary, while |
no test coverage detected