Byte binds parameter to byte variable
(sourceParam string, dest *byte)
| 727 | |
| 728 | // Byte binds parameter to byte variable |
| 729 | func (b *ValueBinder) Byte(sourceParam string, dest *byte) *ValueBinder { |
| 730 | return b.uintValue(sourceParam, dest, 8, false) |
| 731 | } |
| 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 { |