Function winnow::character::dec_uint

source ·
pub fn dec_uint<I, O, E: ParseError<I>>(input: I) -> IResult<I, O, E>where
    I: StreamIsPartial + Stream,
    <I as Stream>::Token: AsChar + Copy,
    O: Uint,
Expand description

Decode a decimal unsigned integer

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.