• Home
  • Raw
  • Download

Lines Matching defs:Input

70 pub fn be_u8<Input, Error>(input: &mut Input) -> PResult<u8, Error>  in be_u8()
73 Error: ParserError<Input>, in be_u8()
114 pub fn be_u16<Input, Error>(input: &mut Input) -> PResult<u16, Error> in be_u16()
117 Error: ParserError<Input>, in be_u16()
158 pub fn be_u24<Input, Error>(input: &mut Input) -> PResult<u32, Error> in be_u24()
161 Error: ParserError<Input>, in be_u24()
202 pub fn be_u32<Input, Error>(input: &mut Input) -> PResult<u32, Error> in be_u32()
205 Error: ParserError<Input>, in be_u32()
246 pub fn be_u64<Input, Error>(input: &mut Input) -> PResult<u64, Error> in be_u64()
249 Error: ParserError<Input>, in be_u64()
290 pub fn be_u128<Input, Error>(input: &mut Input) -> PResult<u128, Error> in be_u128()
293 Error: ParserError<Input>, in be_u128()
299 fn be_uint<Input, Uint, Error>(input: &mut Input, bound: usize) -> PResult<Uint, Error> in be_uint()
303 Error: ParserError<Input>, in be_uint()
320 fn to_be_uint<Input, Uint>(number: &Input, offset: usize) -> Uint in to_be_uint()
372 pub fn be_i8<Input, Error>(input: &mut Input) -> PResult<i8, Error> in be_i8()
375 Error: ParserError<Input>, in be_i8()
416 pub fn be_i16<Input, Error>(input: &mut Input) -> PResult<i16, Error> in be_i16()
419 Error: ParserError<Input>, in be_i16()
463 pub fn be_i24<Input, Error>(input: &mut Input) -> PResult<i32, Error> in be_i24()
466 Error: ParserError<Input>, in be_i24()
518 pub fn be_i32<Input, Error>(input: &mut Input) -> PResult<i32, Error> in be_i32()
521 Error: ParserError<Input>, in be_i32()
565 pub fn be_i64<Input, Error>(input: &mut Input) -> PResult<i64, Error> in be_i64()
568 Error: ParserError<Input>, in be_i64()
612 pub fn be_i128<Input, Error>(input: &mut Input) -> PResult<i128, Error> in be_i128()
615 Error: ParserError<Input>, in be_i128()
659 pub fn le_u8<Input, Error>(input: &mut Input) -> PResult<u8, Error> in le_u8()
662 Error: ParserError<Input>, in le_u8()
703 pub fn le_u16<Input, Error>(input: &mut Input) -> PResult<u16, Error> in le_u16()
706 Error: ParserError<Input>, in le_u16()
747 pub fn le_u24<Input, Error>(input: &mut Input) -> PResult<u32, Error> in le_u24()
750 Error: ParserError<Input>, in le_u24()
791 pub fn le_u32<Input, Error>(input: &mut Input) -> PResult<u32, Error> in le_u32()
794 Error: ParserError<Input>, in le_u32()
835 pub fn le_u64<Input, Error>(input: &mut Input) -> PResult<u64, Error> in le_u64()
838 Error: ParserError<Input>, in le_u64()
879 pub fn le_u128<Input, Error>(input: &mut Input) -> PResult<u128, Error> in le_u128()
882 Error: ParserError<Input>, in le_u128()
888 fn le_uint<Input, Uint, Error>(input: &mut Input, bound: usize) -> PResult<Uint, Error> in le_uint()
892 Error: ParserError<Input>, in le_uint()
908 fn to_le_uint<Input, Uint>(number: &Input, offset: usize) -> Uint in to_le_uint()
960 pub fn le_i8<Input, Error>(input: &mut Input) -> PResult<i8, Error> in le_i8()
963 Error: ParserError<Input>, in le_i8()
1004 pub fn le_i16<Input, Error>(input: &mut Input) -> PResult<i16, Error> in le_i16()
1007 Error: ParserError<Input>, in le_i16()
1051 pub fn le_i24<Input, Error>(input: &mut Input) -> PResult<i32, Error> in le_i24()
1054 Error: ParserError<Input>, in le_i24()
1106 pub fn le_i32<Input, Error>(input: &mut Input) -> PResult<i32, Error> in le_i32()
1109 Error: ParserError<Input>, in le_i32()
1153 pub fn le_i64<Input, Error>(input: &mut Input) -> PResult<i64, Error> in le_i64()
1156 Error: ParserError<Input>, in le_i64()
1200 pub fn le_i128<Input, Error>(input: &mut Input) -> PResult<i128, Error> in le_i128()
1203 Error: ParserError<Input>, in le_i128()
1254 pub fn u8<Input, Error>(input: &mut Input) -> PResult<u8, Error> in u8()
1257 Error: ParserError<Input>, in u8()
1269 fn u8_<Input, Error, const PARTIAL: bool>(input: &mut Input) -> PResult<u8, Error> in u8_()
1272 Error: ParserError<Input>, in u8_()
1337 pub fn u16<Input, Error>(endian: Endianness) -> impl Parser<Input, u16, Error> in u16()
1340 Error: ParserError<Input>, in u16()
1408 pub fn u24<Input, Error>(endian: Endianness) -> impl Parser<Input, u32, Error> in u24()
1411 Error: ParserError<Input>, in u24()
1479 pub fn u32<Input, Error>(endian: Endianness) -> impl Parser<Input, u32, Error> in u32()
1482 Error: ParserError<Input>, in u32()
1550 pub fn u64<Input, Error>(endian: Endianness) -> impl Parser<Input, u64, Error> in u64()
1553 Error: ParserError<Input>, in u64()
1621 pub fn u128<Input, Error>(endian: Endianness) -> impl Parser<Input, u128, Error> in u128()
1624 Error: ParserError<Input>, in u128()
1681 pub fn i8<Input, Error>(input: &mut Input) -> PResult<i8, Error> in i8()
1684 Error: ParserError<Input>, in i8()
1751 pub fn i16<Input, Error>(endian: Endianness) -> impl Parser<Input, i16, Error> in i16()
1754 Error: ParserError<Input>, in i16()
1822 pub fn i24<Input, Error>(endian: Endianness) -> impl Parser<Input, i32, Error> in i24()
1825 Error: ParserError<Input>, in i24()
1893 pub fn i32<Input, Error>(endian: Endianness) -> impl Parser<Input, i32, Error> in i32()
1896 Error: ParserError<Input>, in i32()
1964 pub fn i64<Input, Error>(endian: Endianness) -> impl Parser<Input, i64, Error> in i64()
1967 Error: ParserError<Input>, in i64()
2035 pub fn i128<Input, Error>(endian: Endianness) -> impl Parser<Input, i128, Error> in i128()
2038 Error: ParserError<Input>, in i128()
2089 pub fn be_f32<Input, Error>(input: &mut Input) -> PResult<f32, Error> in be_f32()
2092 Error: ParserError<Input>, in be_f32()
2136 pub fn be_f64<Input, Error>(input: &mut Input) -> PResult<f64, Error> in be_f64()
2139 Error: ParserError<Input>, in be_f64()
2183 pub fn le_f32<Input, Error>(input: &mut Input) -> PResult<f32, Error> in le_f32()
2186 Error: ParserError<Input>, in le_f32()
2230 pub fn le_f64<Input, Error>(input: &mut Input) -> PResult<f64, Error> in le_f64()
2233 Error: ParserError<Input>, in le_f64()
2295 pub fn f32<Input, Error>(endian: Endianness) -> impl Parser<Input, f32, Error> in f32()
2298 Error: ParserError<Input>, in f32()
2366 pub fn f64<Input, Error>(endian: Endianness) -> impl Parser<Input, f64, Error> in f64()
2369 Error: ParserError<Input>, in f64()
2415 pub fn length_take<Input, Count, Error, CountParser>( in length_take()
2417 ) -> impl Parser<Input, <Input as Stream>::Slice, Error> in length_take()
2421 CountParser: Parser<Input, Count, Error>, in length_take()
2422 Error: ParserError<Input>, in length_take()
2466 pub fn length_and_then<Input, Output, Count, Error, CountParser, ParseNext>( in length_and_then()
2469 ) -> impl Parser<Input, Output, Error> in length_and_then()
2473 CountParser: Parser<Input, Count, Error>, in length_and_then()
2474 ParseNext: Parser<Input, Output, Error>, in length_and_then()
2475 Error: ParserError<Input>, in length_and_then()
2518 pub fn length_repeat<Input, Output, Accumulator, Count, Error, CountParser, ParseNext>( in length_repeat()
2521 ) -> impl Parser<Input, Accumulator, Error> in length_repeat()
2526 CountParser: Parser<Input, Count, Error>, in length_repeat()
2527 ParseNext: Parser<Input, Output, Error>, in length_repeat()
2528 Error: ParserError<Input>, in length_repeat()