Function le_i32
fn le_i32<Input, Error>(input: &mut Input) -> Result<i32, Error>
where
Input: StreamIsPartial + Stream<Token = u8>,
Error: ParserError<Input>
Recognizes a little endian signed 4 bytes integer.
Complete version: Returns an error if there is not enough input data.
[Partial version][crate::_topic::partial]: Will return Err(winnow::error::ErrMode::Incomplete(_)) if there is not enough data.
Example
# use ;
# use *;
# use Size;
use le_i32;
assert_eq!;
assert!;
# use ;
# use *;
# use Partial;
use le_i32;
assert_eq!;
assert_eq!;