Key implements Key and Sort interfaces.
| 335 | |
| 336 | // Key implements Key and Sort interfaces. |
| 337 | type Key struct { |
| 338 | Id uint64 |
| 339 | } |
| 340 | |
| 341 | func NewKey(key uint64) *Key { return &Key{key} } |
| 342 | func (m *Key) Key() driver.Value { return driver.Value(m.Id) } |
nothing calls this directly
no outgoing calls
no test coverage detected