MustUint64 requires parameter value to exist to bind to uint64 variable. Returns error when value does not exist
(sourceParam string, dest *uint64)
| 692 | |
| 693 | // MustUint64 requires parameter value to exist to bind to uint64 variable. Returns error when value does not exist |
| 694 | func (b *ValueBinder) MustUint64(sourceParam string, dest *uint64) *ValueBinder { |
| 695 | return b.uintValue(sourceParam, dest, 64, true) |
| 696 | } |
| 697 | |
| 698 | // Uint32 binds parameter to uint32 variable |
| 699 | func (b *ValueBinder) Uint32(sourceParam string, dest *uint32) *ValueBinder { |