MustUint32 requires parameter value to exist to bind to uint32 variable. Returns error when value does not exist
(sourceParam string, dest *uint32)
| 702 | |
| 703 | // MustUint32 requires parameter value to exist to bind to uint32 variable. Returns error when value does not exist |
| 704 | func (b *ValueBinder) MustUint32(sourceParam string, dest *uint32) *ValueBinder { |
| 705 | return b.uintValue(sourceParam, dest, 32, true) |
| 706 | } |
| 707 | |
| 708 | // Uint16 binds parameter to uint16 variable |
| 709 | func (b *ValueBinder) Uint16(sourceParam string, dest *uint16) *ValueBinder { |