我在 nom 5 中找不到正确的语法来进行位解析。
我正在尝试这个:
pub fn parse_normal_record_header(i: &[u8]) -> nom::IResult<&[u8], FitRecordHeader> {
let (i, _) = nom::bits::bits(nom::bits::complete::tag(0x0, 1_usize))(i)?;
...
}
并从编译器中获取:
error[E0283]: type annotations needed
--> src/fitparsers.rs:658:18
|
658 | let (i, _) = nom::bits::bits(nom::bits::complete::tag(0x0, 1_usize))(i)?;
| ^^^^^^^^^^^^^^^ cannot infer type for type parameter `E1` declared on the function `bits`
|
::: /Users/djk/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/bits/mod.rs:37:23
|
37 | pub fn bits<I, O, E1: ParseError<(I, usize)>+ErrorConvert<E2>, E2: ParseError<I>, P>(parser: P) -> impl Fn(I) -> IResult<I, O, E2>
| ---------------------- required by this bound in `nom::bits`
|
= note: cannot satisfy `_: nom::error::ParseError<(&[u8], usize)>`
help: consider specifying the type arguments in the function call
|
658 | let (i, _) = nom::bits::bits::<I, O, E1, E2, P>(nom::bits::complete::tag(0x0, 1_usize))(i)?;
我尝试过各种可怕的事情,比如:
let (i, _) = nom::bits::bits(nom::bits::complete::tag::<&[u8], (&[u8], u8), usize, dyn nom::error::ParseError<(&[u8], usize)>>(0, 1_usize))(i)?;
...尝试遵循我在 nom 源中看到的内容,但这会产生不同的错误:
error[E0277]: the size for values of type `dyn nom::error::ParseError<(&[u8], usize)>` cannot be known at compilation time
--> src/fitparsers.rs:662:34
|
662 | ...om::bits::bits(nom::bits::complete::tag::<&[u8], (&[u8], u8), usize, dyn nom::error::ParseError<(&[u8], usize)>>(0, 1_usize))(i)?;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ doesn't have a size known at compile-time
|
::: /Users/djk/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/bits/complete.rs:57:21
|
57 | pub fn tag<I, O, C, E: ParseError<(I, usize)>>(pattern: O, count: C) -> impl Fn((I, usize)) -> IResult<(I, usize), O, E>
| - required by this bound in `nom::complete::tag`
|
= help: the trait `std::marker::Sized` is not implemented for `dyn nom::error::ParseError<(&[u8], usize)>`
我究竟做错了什么?