serde_cursor 0.4.0

fetch the desired parts of a serde-compatible data format efficiently using a jq-like language
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
error: unexpected token
 --> tests/ui/missing_path.rs:4:19
  |
4 | type X<T> = Path!(+ T);
  |                   ^

error[E0091]: type parameter `T` is never used
 --> tests/ui/missing_path.rs:4:8
  |
4 | type X<T> = Path!(+ T);
  |        ^ unused type parameter
  |
  = help: consider removing `T` or referring to it in the body of the type alias
  = help: if you intended `T` to be a const parameter, use `const T: /* Type */` instead