MustUint requires parameter value to exist to bind to uint variable. Returns error when value does not exist
(sourceParam string, dest *uint)
| 742 | |
| 743 | // MustUint requires parameter value to exist to bind to uint variable. Returns error when value does not exist |
| 744 | func (b *ValueBinder) MustUint(sourceParam string, dest *uint) *ValueBinder { |
| 745 | return b.uintValue(sourceParam, dest, 0, true) |
| 746 | } |
| 747 | |
| 748 | func (b *ValueBinder) uintValue(sourceParam string, dest any, bitSize int, valueMustExist bool) *ValueBinder { |
| 749 | if b.failFast && b.errors != nil { |