MustByte requires parameter value to exist to bind to byte variable. Returns error when value does not exist
(sourceParam string, dest *byte)
| 732 | |
| 733 | // MustByte requires parameter value to exist to bind to byte variable. Returns error when value does not exist |
| 734 | func (b *ValueBinder) MustByte(sourceParam string, dest *byte) *ValueBinder { |
| 735 | return b.uintValue(sourceParam, dest, 8, true) |
| 736 | } |
| 737 | |
| 738 | // Uint binds parameter to uint variable |
| 739 | func (b *ValueBinder) Uint(sourceParam string, dest *uint) *ValueBinder { |