MustUint8 requires parameter value to exist to bind to uint8 variable. Returns error when value does not exist
(sourceParam string, dest *uint8)
| 722 | |
| 723 | // MustUint8 requires parameter value to exist to bind to uint8 variable. Returns error when value does not exist |
| 724 | func (b *ValueBinder) MustUint8(sourceParam string, dest *uint8) *ValueBinder { |
| 725 | return b.uintValue(sourceParam, dest, 8, true) |
| 726 | } |
| 727 | |
| 728 | // Byte binds parameter to byte variable |
| 729 | func (b *ValueBinder) Byte(sourceParam string, dest *byte) *ValueBinder { |