Value implements the driver.Valuer interface.
()
| 32 | |
| 33 | // Value implements the driver.Valuer interface. |
| 34 | func (u UUID) Value() (driver.Value, error) { |
| 35 | return u.String(), nil |
| 36 | } |
| 37 | |
| 38 | // Scan implements the sql.Scanner interface. |
| 39 | // A 16-byte slice will be handled by UnmarshalBinary, while |