Function winnow::ascii::dec_int

source ·
pub fn dec_int<I, O, E: ParserError<I>>(input: &mut I) -> PResult<O, E>where
    I: StreamIsPartial + Stream,
    <I as Stream>::Token: AsChar + Clone,
    O: Int,
Expand description

Decode a decimal signed integer (e.g. i32)

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.