MCPcopy Index your code
hub / github.com/labstack/echo / Uint8

Method Uint8

binder.go:719–721  ·  view source on GitHub ↗

Uint8 binds parameter to uint8 variable

(sourceParam string, dest *uint8)

Source from the content-addressed store, hash-verified

717
718// Uint8 binds parameter to uint8 variable
719func (b *ValueBinder) Uint8(sourceParam string, dest *uint8) *ValueBinder {
720 return b.uintValue(sourceParam, dest, 8, false)
721}
722
723// MustUint8 requires parameter value to exist to bind to uint8 variable. Returns error when value does not exist
724func (b *ValueBinder) MustUint8(sourceParam string, dest *uint8) *ValueBinder {

Calls 1

uintValueMethod · 0.95