pub fn dec_uint<I, O, E: ParserError<I>>(input: &mut I) -> PResult<O, E>
Expand description
Decode a decimal unsigned integer (e.g. u32
)
Complete version: can parse until the end of input.
Partial version: Will return Err(winnow::error::ErrMode::Incomplete(_))
if there’s not enough input data.