MustUint16 requires parameter value to exist to bind to uint16 variable. Returns error when value does not exist
(sourceParam string, dest *uint16)
| 712 | |
| 713 | // MustUint16 requires parameter value to exist to bind to uint16 variable. Returns error when value does not exist |
| 714 | func (b *ValueBinder) MustUint16(sourceParam string, dest *uint16) *ValueBinder { |
| 715 | return b.uintValue(sourceParam, dest, 16, true) |
| 716 | } |
| 717 | |
| 718 | // Uint8 binds parameter to uint8 variable |
| 719 | func (b *ValueBinder) Uint8(sourceParam string, dest *uint8) *ValueBinder { |